Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
121
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.  
  3. section .data
  4. mystring db "This is my string", 10, 0
  5.  
  6. section .text
  7. global CMAIN
  8. CMAIN:
  9. push ebp
  10. mov ebp, esp
  11.  
  12. PRINT_STRING mystring
  13.  
  14. ; TODO: call puts on string
  15.  
  16. leave
  17. ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement