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

Adds power-on bit to speed register.

This commit is contained in:
Thomas Harte 2020-10-30 21:50:39 -04:00
parent 2be817a6a1
commit e4459b6256

View File

@ -262,7 +262,7 @@ class ConcreteMachine:
int fast_access_phase_ = 0;
int slow_access_phase_ = 0;
uint8_t speed_register_ = 0x00;
uint8_t speed_register_ = 0x40; // i.e. Power-on status. (TODO: only if ROM03?)
// MARK: - Memory storage.