1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Tweak guess at initial state.

This commit is contained in:
Thomas Harte 2021-09-09 22:06:36 -04:00
parent 3bf109ae0b
commit d8e42c4379
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ template <typename Machine> class AuxiliaryMemorySwitches {
bool read_auxiliary_memory = false;
bool write_auxiliary_memory = false;
bool internal_CX_rom = false;
bool internal_CX_rom = true;
bool slot_C3_rom = false;
bool internal_C8_rom = false;

View File

@ -241,7 +241,7 @@ class MemoryMap {
friend AuxiliaryMemorySwitches;
friend LanguageCardSwitches;
uint8_t shadow_register_ = 0x08;
uint8_t shadow_register_ = 0x00;
uint8_t speed_register_ = 0x00;
// MARK: - Memory banking.