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