Advertisement
LanguageAgnostic

ASM_hello32

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