.section .data message: .asciz "Hello World\n" .section .text .globl _start _start: mov $5, %rax mov $message, %rdi call puts ret