Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .section .data
  2.  
  3. .section .text
  4. .globl _start
  5. _start:
  6.    movl $0, %eax #move 0 into the eax regiser
  7.    movl $1, %ebx #status code to return
  8.    
  9.    int $0x80 #linux system interupt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement