Last active
November 16, 2016 05:41
-
-
Save niconii/f3578edf1d6f6bdccb86 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bankswitch(bank, address) { | |
push old bank to stack ; in old bank | |
switch code bank register to new bank ; in old bank | |
call bank:address ; in old bank | |
; function in new bank returns here | |
pop old bank from stack ; in new bank | |
switch code bank register to old bank ; in new bank | |
jump to label in old bank ; in new bank | |
label: | |
return to caller of bank switch ; in old bank | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment