SirCmpwn

Untitled

May 28th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. ; In the kernel
  2. ; jump table
  3. .org 0
  4. .longform
  5. JSR subroutine1
  6. JSR subroutine2
  7. JSR subroutine3
  8.  
  9. subroutine1:
  10. subroutine2:
  11. subroutine3:
  12.  
  13. ; Create this file: (thingy.inc)
  14. subroutine1 .equ 0
  15. subroutine1 .equ 2
  16. subroutine1 .equ 4
  17.  
  18. ; In userland
  19. #include <thingy.inc>
  20. JSR subroutine1 ; =D
Advertisement
Add Comment
Please, Sign In to add comment