From e1f4187430b969315d804646c7c739e3d49c373d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 20 Apr 2022 20:22:56 -0400 Subject: [PATCH] Introduce failing ASL test. --- OSBindings/Mac/Clock SignalTests/m68kDecoderTests.mm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/OSBindings/Mac/Clock SignalTests/m68kDecoderTests.mm b/OSBindings/Mac/Clock SignalTests/m68kDecoderTests.mm index 9908bd9ee..d1f13593e 100644 --- a/OSBindings/Mac/Clock SignalTests/m68kDecoderTests.mm +++ b/OSBindings/Mac/Clock SignalTests/m68kDecoderTests.mm @@ -175,6 +175,11 @@ template NSString *operand(Preinstruction instruction) { case Operation::NEGw: instruction = @"NEG.w"; break; case Operation::NEGl: instruction = @"NEG.l"; break; + case Operation::ASLb: instruction = @"ASL.b"; break; + case Operation::ASLw: instruction = @"ASL.w"; break; + case Operation::ASLl: instruction = @"ASL.l"; break; + case Operation::ASLm: instruction = @"ASL.w"; break; + /* TODO: