1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

PET screen memory is at $8000, not $0800

This commit is contained in:
mrdudz 2017-12-11 21:15:29 +01:00
parent 8902730756
commit a54b4bebde

View File

@ -19,7 +19,7 @@
#elif defined(__CBM610__)
# define SCREEN_RAM ((unsigned char*)0xD000)
#elif defined(__PET__)
# define SCREEN_RAM ((unsigned char*)0x0800)
# define SCREEN_RAM ((unsigned char*)0x8000)
#elif defined(__VIC20__)
# define SCREEN_RAM ((unsigned char*)0x1000)
#else