diff --git a/Processors/68000/68000.hpp b/Processors/68000/68000.hpp index 3e9e4f505..713ded299 100644 --- a/Processors/68000/68000.hpp +++ b/Processors/68000/68000.hpp @@ -111,7 +111,10 @@ struct MicrocycleOperationStorage { */ template struct Microcycle: public MicrocycleOperationStorage { - using OperationT = OperationT; + // One of the following is also exposed here via inheritance: + // + // static constexpr OperationT operation; or + // OperationT operation; /// Describes the duration of this Microcycle. HalfCycles length = HalfCycles(4);