From 50b9d0e86d7fc284f40660696fcdfd04cbd89ea1 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 18 Jul 2021 20:25:22 -0400 Subject: [PATCH] Logically, I think this should be unsigned. --- 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 c76988f26..bf4cae7c6 100644 --- a/Processors/68000/68000.hpp +++ b/Processors/68000/68000.hpp @@ -93,7 +93,7 @@ struct Microcycle { /// Contains a valid combination of the various static constexpr int flags, describing the operation /// performed by this Microcycle. - int operation = 0; + unsigned int operation = 0; /// Describes the duration of this Microcycle. HalfCycles length = HalfCycles(4);