Skip to content

Instantly share code, notes, and snippets.

@victorvaz
Created December 26, 2015 19:16
Show Gist options
  • Save victorvaz/f74a72e298bfca2ec43e to your computer and use it in GitHub Desktop.
Save victorvaz/f74a72e298bfca2ec43e to your computer and use it in GitHub Desktop.
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