Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- section .data
- message db 'Hello world!',0xa
- messageLen equ $-message
- section .text
- global _start
- _start:
- mov eax,4
- mov ebx,1
- mov ecx,message
- mov edx,messageLen
- int 80h
- mov eax,1
- mov ebx,0
- int 80h
Advertisement
Add Comment
Please, Sign In to add comment