Added more CIA addresses.

This commit is contained in:
Jesper Gravgaard 2024-01-02 18:50:07 +01:00
parent dc65b10ece
commit 771fa9dbcd
1 changed files with 10 additions and 0 deletions

View File

@ -47,8 +47,18 @@ char * const DEFAULT_FONT_MIXED = (char*)0x1800;
struct MOS6526_CIA * const CIA1 = (struct MOS6526_CIA *)0xdc00;
/// The CIA#2: Serial bus, RS-232, VIC memory bank
struct MOS6526_CIA * const CIA2 = (struct MOS6526_CIA *)0xdd00;
/// CIA#1 timer A
unsigned int* const CIA1_TIMER_A = (unsigned int*)0xdc04;
/// CIA#1 timer B
unsigned int* const CIA1_TIMER_B = (unsigned int*)0xdc06;
/// CIA#1 timer A&B as one single 32-bit value
unsigned long* const CIA1_TIMER_AB = (unsigned long*)0xdc04;
/// CIA#1 Interrupt for reading in ASM
char * const CIA1_INTERRUPT = (char*)0xdc0d;
/// CIA#2 timer A
unsigned int* const CIA2_TIMER_A = (unsigned int*)0xdd04;
/// CIA#2 timer B
unsigned int* const CIA2_TIMER_B = (unsigned int*)0xdd06;
/// CIA#2 timer A&B as one single 32-bit value
unsigned long* const CIA2_TIMER_AB = (unsigned long*)0xdd04;
/// CIA#2 Interrupt for reading in ASM