AInstInterpreter.cs 204 B

12345678
  1. using ChocolArm64.Decoder;
  2. using ChocolArm64.Memory;
  3. using ChocolArm64.State;
  4. namespace ChocolArm64.Instruction
  5. {
  6. delegate void AInstInterpreter(AThreadState State, AMemory Memory, AOpCode OpCode);
  7. }