mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
Add initial pass at constants and operands that reference labels
This commit is contained in:
@@ -37,7 +37,7 @@ public record Instruction(string Mnemonic, IEnumerable<Operand> Operands) : Code
|
||||
if (operands.Length != schema.Length)
|
||||
throw new ArgumentException($"{opCode} requires {schema.Length} operands, got {operands.Length}");
|
||||
|
||||
var operandModels = new Operand[operands.Length];
|
||||
var operandModels = new OperandLiteral[operands.Length];
|
||||
for (int i = 0; i < schema.Length; i++)
|
||||
{
|
||||
var operandValue = operands[i];
|
||||
|
||||
Reference in New Issue
Block a user