From 6207f2ab416a697407dc3481bd97f189d78f6be6 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 19 Apr 2022 17:15:36 -0400 Subject: [PATCH] Correct MOVEA output. --- Processors/68000/Implementation/68000Storage.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Processors/68000/Implementation/68000Storage.cpp b/Processors/68000/Implementation/68000Storage.cpp index 70d38a1ba..f18cd4ff5 100644 --- a/Processors/68000/Implementation/68000Storage.cpp +++ b/Processors/68000/Implementation/68000Storage.cpp @@ -3077,6 +3077,7 @@ struct ProcessorStorageConstructor { continue; } operation = is_long_word_access ? Operation::MOVEAl : Operation::MOVEAw; + dumper.set_operation(operation); } // ... there are also no byte moves from address registers.