diff options
Diffstat (limited to 'tests/asm/yay.asm')
-rw-r--r-- | tests/asm/yay.asm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/asm/yay.asm b/tests/asm/yay.asm new file mode 100644 index 0000000..beffcb6 --- /dev/null +++ b/tests/asm/yay.asm @@ -0,0 +1,17 @@ +section .data + +msg: db "yay", 10 +len: equ $-msg + +section .text +global main +main: + mov rax, 1 + mov rdi, 1 + mov esi, msg + mov rdx, len + syscall + + mov rax, 60 + mov rdi, 0 + syscall |