Ryujinx/Spv.Generator/Operand.cs

15 lines
244 B
C#
Raw Normal View History

2021-08-12 06:09:56 +00:00
using System;
using System.IO;
namespace Spv.Generator
{
public interface Operand : IEquatable<Operand>
{
OperandType Type { get; }
ushort WordCount { get; }
void WriteOperand(BinaryWriter writer);
2021-08-12 06:09:56 +00:00
}
}