diff --git a/Cpp2IL.Core/InstructionSets/NewArmV8InstructionSet.cs b/Cpp2IL.Core/InstructionSets/NewArmV8InstructionSet.cs index a3b6577c..75b13801 100644 --- a/Cpp2IL.Core/InstructionSets/NewArmV8InstructionSet.cs +++ b/Cpp2IL.Core/InstructionSets/NewArmV8InstructionSet.cs @@ -143,6 +143,9 @@ private void ConvertInstructionStatement(Arm64Instruction instruction, IsilBuild //Add is (dest, src1, src2) builder.Add(instruction.Address, ConvertOperand(instruction, 0), ConvertOperand(instruction, 1), ConvertOperand(instruction, 2)); break; + default: + builder.NotImplemented(instruction.Address, $"Instruction {instruction.Mnemonic} not yet implemented."); + break; } }