From c07f8d8ef8b82a7c9dfc01f77ff7bc3d0101b91d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 22 Dec 2023 10:50:49 -0500 Subject: [PATCH] Switch ordering. --- Processors/68000/68000.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Processors/68000/68000.hpp b/Processors/68000/68000.hpp index 713ded299..20490eae1 100644 --- a/Processors/68000/68000.hpp +++ b/Processors/68000/68000.hpp @@ -155,7 +155,7 @@ struct Microcycle: public MicrocycleOperationStorage { } } 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;