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

Correct typo.

This commit is contained in:
Thomas Harte 2021-08-03 21:45:44 -04:00
parent 8e51e8eb77
commit dd91d793d9

View File

@ -59,8 +59,6 @@ template <> class TODStorage<false>: public TODBase {
increment_ = false;
}
}
assert(false);
}
template <int byte> uint8_t read() {
@ -275,7 +273,7 @@ struct MOS6526Storage {
// If this was one-shot, stop.
if(pending&(OneShotInOne | OneShotNow)) {
control &= ~1;
pending &= ~(ApplyClockInOne|ApplyClockInTwo); // Cancel scheculed ticks.
pending &= ~(ApplyClockInOne|ApplyClockInTwo); // Cancel scheduled ticks.
}
}