1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-09 01:29:44 +00:00

Switch ordering.

This commit is contained in:
Thomas Harte 2023-12-22 10:50:49 -05:00
parent dbb14467ec
commit c07f8d8ef8

View File

@ -155,7 +155,7 @@ struct Microcycle: public MicrocycleOperationStorage<op> {
}
}
constexpr Microcycle(OperationT dynamic_operation, HalfCycles length) noexcept :
Microcycle(dynamic_operation), length(length) {}
length(length), Microcycle(dynamic_operation) {}
constexpr Microcycle(HalfCycles length) noexcept {
static_assert(op != Operation::DecodeDynamically);
this->length = length;