[SECTION .bss] daniel resb 4 [SECTION .data] tempo db "%d",0ah,0 [SECTION .text] extern printf global main main : push ebp mov ebp,esp push ebx push esi push edi mov eax, 13 mov ebx , 0 int 80h push eax push dword tempo call printf add esp,8 pop edi pop esi pop ebx pop ebp mov esp,ebp mov eax, 1 mov ebx, 0 int 80h ret