Guest User

Untitled

a guest
Apr 5th, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. .data
  2.  
  3. str:
  4. .string "heloswfidsld\n"
  5. .set lenght, . - str - 1
  6. .text
  7. .globl main
  8. .type main,@function
  9.  
  10. main:
  11. movl $4,%eax
  12. movl $1,%ebx
  13. movl $str,%ecx
  14. movl $lenght,%edx
  15. int $0x80
  16. movl $1,%eax
  17. movl $0,%ebx
  18. int $0x80
  19.  
  20. .size main, . - main
Add Comment
Please, Sign In to add comment