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:
parent
c266639a0c
commit
dbb14467ec
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user