InstInterpreter.cs 214 B

12345678
  1. using ChocolArm64.Decoders;
  2. using ChocolArm64.Memory;
  3. using ChocolArm64.State;
  4. namespace ChocolArm64.Instructions
  5. {
  6. delegate void InstInterpreter(CpuThreadState state, MemoryManager memory, OpCode64 opCode);
  7. }