Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. section .text
  2. global _start
  3.  
  4. section .data
  5. msg db 'Penguini Is Not Gay', 0xa
  6. len equ $ - msg
  7.  
  8. section.text
  9.  
  10. _start:
  11.  
  12. beginning:
  13.  
  14. mov edx, len
  15. mov ecx, msg
  16. mov ebx, 1
  17. mov eax, 4
  18. int 0x80
  19.  
  20. mov ebx, 0
  21. mov eax, 1
  22. int 0x80
  23.  
  24. jmp beginning
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement