diff options
Diffstat (limited to 'test.asm')
-rw-r--r-- | test.asm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test.asm b/test.asm new file mode 100644 index 0000000..3fb6e31 --- /dev/null +++ b/test.asm @@ -0,0 +1,10 @@ +global _start +section .text + +_start: + xor ebx, ebx + xor eax, eax + mov al, 0x1 + int 0x80 + +; nasm -f elf64 test.asm && ld -o test.o |