From 9697e666b766de9ec8833f0d9781fd695915286a Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 21 Apr 2022 16:16:34 -0400 Subject: [PATCH] With a shift to MOVE.q, all tests now pass again. 12802 opcodes now untested. --- OSBindings/Mac/Clock SignalTests/m68kDecoderTests.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OSBindings/Mac/Clock SignalTests/m68kDecoderTests.mm b/OSBindings/Mac/Clock SignalTests/m68kDecoderTests.mm index 69891c682..c2608b5b6 100644 --- a/OSBindings/Mac/Clock SignalTests/m68kDecoderTests.mm +++ b/OSBindings/Mac/Clock SignalTests/m68kDecoderTests.mm @@ -119,7 +119,7 @@ template NSString *operand(Preinstruction instruction, uint16_t opco case Operation::MOVEAw: instruction = @"MOVEA.w"; break; case Operation::MOVEAl: instruction = @"MOVEA.l"; break; - case Operation::MOVEq: instruction = @"MOVEq"; break; + case Operation::MOVEq: instruction = @"MOVE.q"; break; case Operation::LEA: instruction = @"LEA"; break; case Operation::PEA: instruction = @"PEA"; break;