Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ; In the kernel
- ; jump table
- .org 0
- .longform
- JSR subroutine1
- JSR subroutine2
- JSR subroutine3
- subroutine1:
- subroutine2:
- subroutine3:
- ; Create this file: (thingy.inc)
- subroutine1 .equ 0
- subroutine1 .equ 2
- subroutine1 .equ 4
- ; In userland
- #include <thingy.inc>
- JSR subroutine1 ; =D
Advertisement
Add Comment
Please, Sign In to add comment