diff options
Diffstat (limited to 'ChocolArm64/Decoders/IOpCode64.cs')
| -rw-r--r-- | ChocolArm64/Decoders/IOpCode64.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ChocolArm64/Decoders/IOpCode64.cs b/ChocolArm64/Decoders/IOpCode64.cs new file mode 100644 index 00000000..e9407123 --- /dev/null +++ b/ChocolArm64/Decoders/IOpCode64.cs @@ -0,0 +1,13 @@ +using ChocolArm64.Instructions; +using ChocolArm64.State; + +namespace ChocolArm64.Decoders +{ + interface IOpCode64 + { + long Position { get; } + + InstEmitter Emitter { get; } + RegisterSize RegisterSize { get; } + } +}
\ No newline at end of file |
