Created
February 8, 2020 23:48
-
-
Save ErnestoBorio/2e42e038aa97a457050ec0520d6bc0d9 to your computer and use it in GitHub Desktop.
Trying to use custom charset at $2000
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
Byte dump: | |
0825: ad 00 dd - lda $DD00 | |
0828: 29 fc - and #%11111100 | |
082a: 09 03 - ora #%11 | |
082c: 8d 00 dd - sta $DD00 | |
082f: a9 19 - lda #%00011001 | |
0831: 8d 18 d0 - sta $D018 | |
// correctly sets screen mem at $400, but charset is not used from $2000 | |
// Actually in debugger, $D018 is $15 | |
... | |
Memory Map | |
---------- | |
Default-segment: | |
$0801-$080c Basic | |
$080e-$080d Basic End | |
$080e-$083d Init | |
$083e-$0866 Start | |
$2000-$27ff Charset |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment