Advertisement
Guest User

new_1.z80

a guest
May 5th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. section.text
  2. global_start
  3. _start:
  4.  
  5. mov edx,len
  6. mov ecx,msg
  7. mov ebx,1
  8. mov eax,4
  9. int 0x80
  10.  
  11. mov eax,1
  12. int 0x80
  13.  
  14. section.data
  15. msg db "Hello fuckers!",0xa
  16. len equ $ - msg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement