1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Avoid over-logging.

This commit is contained in:
Thomas Harte 2024-01-04 09:57:01 -05:00
parent 9bceb59f6c
commit 9cc37945b7

View File

@ -514,6 +514,11 @@ class ConcreteMachine:
video_->set_page2(*value & 0x40);
break;
case Read(0xc069):
case Write(0xc069):
// Swallow silently; often hit as a side effect of a 16-bit write to 0xc068.
break;
// Various independent memory switch reads [TODO: does the IIe-style keyboard provide the low seven?].
#define SwitchRead(s) *value = memory_.s ? 0x80 : 0x00; is_1Mhz = true;
#define LanguageRead(s) SwitchRead(language_card_switches().state().s)