diff options
Diffstat (limited to 'ChocolArm64/Instructions/InstInterpreter.cs')
| -rw-r--r-- | ChocolArm64/Instructions/InstInterpreter.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ChocolArm64/Instructions/InstInterpreter.cs b/ChocolArm64/Instructions/InstInterpreter.cs new file mode 100644 index 00000000..e6354fd5 --- /dev/null +++ b/ChocolArm64/Instructions/InstInterpreter.cs @@ -0,0 +1,8 @@ +using ChocolArm64.Decoders; +using ChocolArm64.Memory; +using ChocolArm64.State; + +namespace ChocolArm64.Instructions +{ + delegate void InstInterpreter(CpuThreadState state, MemoryManager memory, OpCode64 opCode); +}
\ No newline at end of file |
