1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-05 08:26:28 +00:00

Corrects Macintosh aspect ratio (and framing).

This commit is contained in:
Thomas Harte
2019-06-13 18:41:38 -04:00
parent 39aae34323
commit f6f9024631
10 changed files with 28 additions and 7 deletions

View File

@@ -89,7 +89,7 @@ void z8530::write(int address, std::uint8_t value) {
break;
case 9: // Master interrupt and reset register; also shared between both channels.
LOG("[SCC] TODO: master interrupt and reset register " << PADHEX(2) << int(value));
LOG("[SCC] Master interrupt and reset register: " << PADHEX(2) << int(value));
master_interrupt_control_ = value;
break;
}