Created
July 6, 2015 21:24
-
-
Save zhrkvl/99f31644035eff6ae302 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 .text | |
| global _start | |
| _start: | |
| mov edx,len | |
| mov ecx,msg | |
| mov ebx,1 | |
| mov eax,4 | |
| int 0x80 | |
| mov eax,1 | |
| int 0x80 | |
| section .data | |
| msg db 'Lelpas',0xa | |
| len equ $ - msg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment