section .data message db "Hello World!",0x0A section .text global _start _start: mov eax, 4 mov ebx, 1 mov ecx, message mov edx, 13 int 0x80 mov eax, 1 mov ebx, 0 int 0x80