diff options
Diffstat (limited to 'ChocolArm64/Decoders/IOpCode32.cs')
-rw-r--r-- | ChocolArm64/Decoders/IOpCode32.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ChocolArm64/Decoders/IOpCode32.cs b/ChocolArm64/Decoders/IOpCode32.cs new file mode 100644 index 00000000..3353ffe8 --- /dev/null +++ b/ChocolArm64/Decoders/IOpCode32.cs @@ -0,0 +1,9 @@ +namespace ChocolArm64.Decoders +{ + interface IOpCode32 : IOpCode64 + { + Condition Cond { get; } + + uint GetPc(); + } +}
\ No newline at end of file |