gandaro

Untitled

May 5th, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     .text
  2.     .globl _start
  3. _start:
  4.     movl $4, %eax
  5.     xorl %ebx, %ebx
  6.     incl %ebx
  7.     movl $hello, %ecx
  8.     movl $13, %edx
  9.     int  $0x80
  10.  
  11.     xorl %eax, %eax
  12.     incl %eax
  13.     xorl %ebx, %ebx
  14.     int  $0x80
  15.  
  16. hello:
  17.     .string "Hello world!\n"
Advertisement
Add Comment
Please, Sign In to add comment