Guest User

Untitled

a guest
Feb 18th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # asm startup file
  2. # very first module in load
  3. # taken from $pclibsrc/startup0.s
  4. .globl _end_to_tutor
  5.     movl $0x3ffff0, %esp   # set user program stack
  6.     movl $0, %ebp          # make debugger backtrace terminate here
  7.     call _startupc         # call C startup, which calls user main
  8. _end_to_tutor:
  9.     int $3                 # return to Tutor
Add Comment
Please, Sign In to add comment