Last active
July 30, 2019 00:17
-
-
Save blondie7575/c8aa45b4c037aacf6afbfc37ed319ec6 to your computer and use it in GitHub Desktop.
This file contains 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
.macro CALL16 subroutine,param16 | |
lda #<param16 | |
sta PARAM1_L | |
lda #>param16 | |
sta PARAM1_H | |
jsr subroutine | |
.endmacro | |
ldx #$fc | |
CALL16 graphicsVramWriteByte,$0800 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment