.section .data hwmessage: .asciz "Hello World\n" .section .text .globl _start _start: movl $4, %eax movl $1, %ebx movl $hwmessage, %ecx movl $12, %edx int $0x80 movl $27, %ebx movl $1, %eax int $0x80