1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-18 13:29:41 +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>
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.
HalfCycles length = HalfCycles(4);