Created
December 26, 2015 19:16
-
-
Save victorvaz/f74a72e298bfca2ec43e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
section .data | |
msg db 'Cafeína Codificada é legal', 0AH | |
len equ $-msg | |
section .text | |
global _start | |
_start: mov edx, len | |
mov ecx, msg | |
mov ebx, 1 | |
mov eax, 4 | |
int 80h | |
mov ebx, 0 | |
mov eax, 1 | |
int 80h |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment