yazdmich

Untitled

Aug 23rd, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. MOV EAX, 4 ; System call number (sys_write)
  2. MOV EBX, 1 ; File descriptor (stdout)
  3. MOV ECX, mylist ; Message to write
  4. MOV EDX, 6 ; Message length
  5. INT 0x80 ; Call kernel
Advertisement
Add Comment
Please, Sign In to add comment