From f468db76028086a6645856383fecdf8180b04dd1 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sat, 10 Sep 2022 22:51:00 -0300 Subject: Implement Thumb (32-bit) memory (ordered), multiply, extension and bitfield instructions (#3687) * Implement Thumb (32-bit) memory (ordered), multiply and bitfield instructions * Remove public from interface * Fix T32 BL immediate and implement signed and unsigned extend instructions --- ARMeilleure/Decoders/OpCode32AluMla.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ARMeilleure/Decoders/OpCode32AluMla.cs') diff --git a/ARMeilleure/Decoders/OpCode32AluMla.cs b/ARMeilleure/Decoders/OpCode32AluMla.cs index 74894667..2cd2b9dc 100644 --- a/ARMeilleure/Decoders/OpCode32AluMla.cs +++ b/ARMeilleure/Decoders/OpCode32AluMla.cs @@ -1,6 +1,6 @@ namespace ARMeilleure.Decoders { - class OpCode32AluMla : OpCode32, IOpCode32AluReg + class OpCode32AluMla : OpCode32, IOpCode32AluMla { public int Rn { get; } public int Rm { get; } -- cgit v1.2.3