gandaro

Untitled

May 5th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     segment .text
  2.     global  _start
  3. _start:
  4.     mov eax, 4
  5.     xor ebx, ebx
  6.     inc ebx
  7.     mov ecx, hello
  8.     mov edx, 13
  9.     int 80h
  10.  
  11.     xor eax, eax
  12.     inc eax
  13.     xor ebx, ebx
  14.     int 80h
  15.  
  16. hello:
  17.     db  "Hello world!",10
Advertisement
Add Comment
Please, Sign In to add comment