From dd91d793d90d9f77f29f249a530cf6b7a57e96db Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 3 Aug 2021 21:45:44 -0400 Subject: [PATCH] Correct typo. --- Components/6526/Implementation/6526Storage.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Components/6526/Implementation/6526Storage.hpp b/Components/6526/Implementation/6526Storage.hpp index dbe18d405..c5bd1f08b 100644 --- a/Components/6526/Implementation/6526Storage.hpp +++ b/Components/6526/Implementation/6526Storage.hpp @@ -59,8 +59,6 @@ template <> class TODStorage: public TODBase { increment_ = false; } } - - assert(false); } template 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. } }