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

Removed logging.

This commit is contained in:
Thomas Harte
2016-06-26 21:36:26 -04:00
parent 1439ca0580
commit 69d78dfdb3
2 changed files with 1 additions and 6 deletions

View File

@@ -111,7 +111,6 @@ template <class T> class MOS6522 {
case 0xb: _registers.auxiliary_control = value; break;
case 0xc:
_registers.peripheral_control = value;
printf("Peripheral control %02x\n", value);
break;
// Interrupt control
@@ -125,7 +124,6 @@ template <class T> class MOS6522 {
else
_registers.interrupt_enable &= ~value;
reevaluate_interrupts();
printf("[%p] Interrupt mask -> %02x\n", this, _registers.interrupt_enable);
break;
}
}