.section .data message: .asciz "Hello World\n" .section .text .globl _start _start: # like: %eax = 1 movl $1, %eax movl $27, %ebx movl $4, %ecx addl %ecx, %ebx addl $5, %ebx int $0x80