section .data
hhhhh db "Hello World!"
section .text
mov eax,4
mov ebx,1
mov ecx,hhhhh
mov edx,12
int 80h
mov eax,1
mov ebx,0
int 80h