1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-29 12:50:28 +00:00

Remove redundant using, add extra comment.

This commit is contained in:
Thomas Harte 2023-12-22 10:48:35 -05:00
parent c266639a0c
commit dbb14467ec

View File

@ -111,7 +111,10 @@ struct MicrocycleOperationStorage<Operation::DecodeDynamically> {
*/ */
template <OperationT op = Operation::DecodeDynamically> template <OperationT op = Operation::DecodeDynamically>
struct Microcycle: public MicrocycleOperationStorage<op> { struct Microcycle: public MicrocycleOperationStorage<op> {
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. /// Describes the duration of this Microcycle.
HalfCycles length = HalfCycles(4); HalfCycles length = HalfCycles(4);