fix implicit operands
This commit is contained in:
@@ -9,7 +9,7 @@ type Instruction struct {
|
||||
type Form struct {
|
||||
ISA []string
|
||||
Operands []Operand
|
||||
ImplicitOperands []Operand
|
||||
ImplicitOperands []ImplicitOperand
|
||||
}
|
||||
|
||||
type Operand struct {
|
||||
|
||||
@@ -291,8 +291,9 @@ func (l Loader) form(opcode string, f opcodesxml.Form) inst.Form {
|
||||
}
|
||||
|
||||
return inst.Form{
|
||||
Operands: ops,
|
||||
ISA: isas,
|
||||
ISA: isas,
|
||||
Operands: ops,
|
||||
ImplicitOperands: implicits,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user