diff options
Diffstat (limited to 'Spv.Generator/Operand.cs')
-rw-r--r-- | Spv.Generator/Operand.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Spv.Generator/Operand.cs b/Spv.Generator/Operand.cs new file mode 100644 index 00000000..eaa2e13e --- /dev/null +++ b/Spv.Generator/Operand.cs @@ -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); + } +} |