From 69d62560b47bddd9e52a171cdf416322f298f103 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 22 Jul 2021 22:00:33 -0400 Subject: [PATCH] Adds comment to avoid potential future error. --- Processors/68000/68000.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Processors/68000/68000.hpp b/Processors/68000/68000.hpp index 9ff37068c..61bfa2ede 100644 --- a/Processors/68000/68000.hpp +++ b/Processors/68000/68000.hpp @@ -65,6 +65,8 @@ struct Microcycle { /// If set, indicates a read. Otherwise, a write. static constexpr OperationT Read = 1 << 2; + // Two-bit gap deliberately left here for PermitRead/Write below. + /// A NewAddress cycle is one in which the address strobe is initially low but becomes high; /// this correlates to states 0 to 5 of a standard read/write cycle. static constexpr OperationT NewAddress = 1 << 5;