anouarattn

Interrupt

May 31st, 2014
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. section .data
  2.        mro: db"HELLO World"
  3.         mro_e: equ  $-mro
  4.  
  5. section .text
  6.          global _start:
  7. _start:
  8.        mov eax,4
  9.        mov ebx,1
  10.        mov ecx,mro
  11.        mov edx,mro_e
  12.        int 80h
  13.        mov eax, 1
  14.        movebx,0
  15.        int 80h
Advertisement
Add Comment
Please, Sign In to add comment