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

Reduce logging.

This commit is contained in:
Thomas Harte 2023-02-26 14:01:23 -05:00
parent 95fd5a52ba
commit c7128f4206

View File

@ -754,13 +754,10 @@ void Base<personality>::commit_register(int reg, uint8_t value) {
);
enable_line_interrupts_ = value & 0x10;
LOG("TODO: Yamaha additional mode selection; " << PADHEX(2) << +value);
// b1b3: M3M5
// b4: enable horizontal retrace interrupt
// b5: enable light pen interrupts
// b6: set colour bus to input or output mode
LOG("Screen mode: " << int(current_screen_mode<true>()));
break;
case 1:
@ -769,8 +766,6 @@ void Base<personality>::commit_register(int reg, uint8_t value) {
((value & 0x10) >> 4) |
((value & 0x08) >> 2)
);
LOG("Screen mode: " << int(current_screen_mode<true>()));
break;
case 7: