Advertisement
Guest User

Untitled

a guest
Jun 15th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. section .data
  2.     msg: db "Hello World"
  3.  
  4. section .text  
  5. global _start :
  6. _start:
  7. mov eax, 4
  8. mov ebx, 1
  9. mov ecx, msg
  10. int 80h
  11.  
  12. mov eax, 1
  13. mov ebx, 0
  14. int 80h
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement