Advertisement
Guest User

Untitled

a guest
Jul 26th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. section .text
  2.    global _start    
  3.    
  4. _start:            
  5.    mov  edx,len    
  6.    mov  ecx,msg    
  7.    mov  ebx,1      
  8.    mov  eax,4      
  9.    int  0x80        
  10.    
  11.    mov  eax,1      
  12.    int  0x80        
  13.  
  14. section .data
  15. msg db 'Hello, world!', 0xa  
  16. len equ $ - msg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement