Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. # dear_boys.asm
  2.  
  3. section .data
  4. # be happy ;)
  5. msg db 'C 23 февраля!'
  6. len equ $ - msg
  7.  
  8. section .text
  9. mov eax,4
  10. mov ebx,1
  11. mov ecx,msg
  12. mov edx,len
  13. int 0x80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement