diff options
author | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2015-10-11 14:26:14 -0400 |
---|---|---|
committer | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2015-10-11 14:26:14 -0400 |
commit | e0bea38f2a5b9a46c712b24ccb215735cdf09dff (patch) | |
tree | 70c3a27cf91ae9c2f0a145e2056a9ae447e29094 /asm-64/Makefile |
Add elf64 hello world.
Diffstat (limited to 'asm-64/Makefile')
-rw-r--r-- | asm-64/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/asm-64/Makefile b/asm-64/Makefile new file mode 100644 index 0000000..c208e6c --- /dev/null +++ b/asm-64/Makefile @@ -0,0 +1,5 @@ +all: hello + +hello: + nasm -felf64 -o hello.o hello.asm + ld -o hello hello.o |