Oddbean new post about | logout
 section .data
msg db "Olá Nostr!", LF
msg_tam equ $-msg
LF equ 10
section .text
global _start
_start:
mov eax, 4
mov ebx, 1
mov ecx, msg
mov edx, msg_tam
int 0x80
fim:
mov eax, 1
mov ebx, 0
int 0x80