Advertisement
Guest User

Untitled

a guest
Sep 18th, 2017
55
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.  
  6.     mov edx,len
  7.     mov ecx,msg
  8.     mov ebx,1
  9.     mov eax,4
  10.     int 0x80
  11.  
  12.     mov eax,1
  13.     int 0x80
  14.  
  15. section .data
  16.  
  17. msg db  'Hello, world!',0xa
  18. len equ $ - msg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement