From 8795719c18e4dd93d448835fa544c15407916938 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 3 Aug 2021 17:12:08 -0400 Subject: [PATCH] This counts reloads, most accurately. --- Components/6526/Implementation/6526Storage.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Components/6526/Implementation/6526Storage.hpp b/Components/6526/Implementation/6526Storage.hpp index 3030c8346..6386d76ac 100644 --- a/Components/6526/Implementation/6526Storage.hpp +++ b/Components/6526/Implementation/6526Storage.hpp @@ -72,7 +72,7 @@ struct MOS6526Storage { case 0x00: // Count Phi2 pulses. pending |= TestInputNow; break; - case 0x40: // Count timer A unerflows. + case 0x40: // Count timer A reloads. pending |= chained_input ? TestInputNow : 0; break;