libgoodbye.s 278 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 .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