mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 04:16:38 +00:00
13 lines
246 B
C#
13 lines
246 B
C#
|
using ChocolArm64.Instructions;
|
||
|
using ChocolArm64.State;
|
||
|
|
||
|
namespace ChocolArm64.Decoders
|
||
|
{
|
||
|
interface IOpCode64
|
||
|
{
|
||
|
long Position { get; }
|
||
|
|
||
|
InstEmitter Emitter { get; }
|
||
|
RegisterSize RegisterSize { get; }
|
||
|
}
|
||
|
}
|