Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. %include "io.inc"
  2. extern puts
  3.  
  4. section .data
  5. mystring db 'This is my string', 10, 0
  6.  
  7. section .text
  8. global CMAIN
  9. CMAIN:
  10. push ebp
  11. mov ebp, esp
  12.  
  13. push mystring
  14. call puts
  15. add esp, 4
  16.  
  17. leave
  18. ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement