You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
278 B

.section __TEXT,__cstring
.globl _goodbye_world, _print_goodbye
_goodbye_world:
.asciz "Goodbye world!\n"
.text
_print_goodbye:
movl $0x2000004, %eax # write() syscall
mov $1, %rdi # stdout
leaq _goodbye_world(%rip), %rsi
mov $15, %rdx # length of str
syscall
ret