Skip to content

Instantly share code, notes, and snippets.

@zhrkvl
Created July 6, 2015 21:24
Show Gist options
  • Select an option

  • Save zhrkvl/99f31644035eff6ae302 to your computer and use it in GitHub Desktop.

Select an option

Save zhrkvl/99f31644035eff6ae302 to your computer and use it in GitHub Desktop.
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