aboutsummaryrefslogtreecommitdiff
path: root/src/Spv.Generator/Operand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Spv.Generator/Operand.cs')
-rw-r--r--src/Spv.Generator/Operand.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/Spv.Generator/Operand.cs b/src/Spv.Generator/Operand.cs
deleted file mode 100644
index eaa2e13e..00000000
--- a/src/Spv.Generator/Operand.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-using System.IO;
-
-namespace Spv.Generator
-{
- public interface Operand : IEquatable<Operand>
- {
- OperandType Type { get; }
-
- ushort WordCount { get; }
-
- void WriteOperand(BinaryWriter writer);
- }
-}