Skip to content

Commit

Permalink
Add Not Implemented Instructions when building Arm64 ISIL
Browse files Browse the repository at this point in the history
  • Loading branch information
ds5678 authored and SamboyCoding committed Jun 19, 2024
1 parent a40faeb commit d6ea894
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Cpp2IL.Core/InstructionSets/NewArmV8InstructionSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit d6ea894

Please sign in to comment.