udaykumar1997

sdsdfgggg

Feb 21st, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. SECTION .data
  2.  
  3. EatMsg: db "Hello Ravi sir",10
  4. EatLen: equ $-EatMsg
  5.  
  6. SECTION .bss
  7.  
  8. SECTION .text
  9.  
  10. global _start
  11.  
  12. _start:
  13. nop
  14.  
  15. mov ah,7
  16. mov al,5
  17.  
  18. mov eax,4
  19. mov ebx,1
  20. mov ecx,EatMsg
  21. mov edx,EatLen
  22. int 80H
  23.  
  24. mov eax,1
  25. mov ebx,0
  26. int 80H
Add Comment
Please, Sign In to add comment