1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-04 14:30:19 +00:00

Removes mostly-uninformative piece of logging.

This commit is contained in:
Thomas Harte 2019-12-19 22:58:28 -05:00
parent 3d83f5ab49
commit 2a1520c04e

View File

@ -341,7 +341,7 @@ int MFP68901::acknowledge_interrupt() {
int selected = 0;
while((1 << selected) != mask) ++selected;
LOG("Interrupt acknowledged: " << selected);
// LOG("Interrupt acknowledged: " << selected);
return (interrupt_vector_ & 0xf0) | uint8_t(selected);
}