mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 09:40:47 -07:00
Move solution and projects to src
This commit is contained in:
14
src/Spv.Generator/Operand.cs
Normal file
14
src/Spv.Generator/Operand.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace Spv.Generator
|
||||
{
|
||||
public interface Operand : IEquatable<Operand>
|
||||
{
|
||||
OperandType Type { get; }
|
||||
|
||||
ushort WordCount { get; }
|
||||
|
||||
void WriteOperand(BinaryWriter writer);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user