Initial work
This commit is contained in:
16
Ryujinx.Graphics.Shader/Decoders/IOpCode.cs
Normal file
16
Ryujinx.Graphics.Shader/Decoders/IOpCode.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using Ryujinx.Graphics.Shader.Instructions;
|
||||
|
||||
namespace Ryujinx.Graphics.Shader.Decoders
|
||||
{
|
||||
interface IOpCode
|
||||
{
|
||||
InstEmitter Emitter { get; }
|
||||
|
||||
ulong Address { get; }
|
||||
long RawOpCode { get; }
|
||||
|
||||
Register Predicate { get; }
|
||||
|
||||
bool InvertPredicate { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user