1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-15 18:55:05 +00:00

Added font locations

This commit is contained in:
jespergravgaard 2020-10-29 08:17:29 +01:00
parent 599aaf4d67
commit eb183ada7e

View File

@ -37,6 +37,10 @@ char * const COLS = 0xd800;
// Default address of screen character matrix
char * const DEFAULT_SCREEN = 0x0400;
// Default address of the chargen font (upper case)
char * const DEFAULT_FONT_UPPER = 0x1000;
// Default address of the chargen font (mixed case)
char * const DEFAULT_FONT_MIXED = 0x1800;
// The CIA#1: keyboard matrix, joystick #1/#2
struct MOS6526_CIA * const CIA1 = 0xdc00;