Files
subcoding/vm/instruction.go

11 lines
152 B
Go
Raw Normal View History

2021-11-15 20:44:26 -10:00
package vm
type Instruction struct {
OpCode OpCodeType
Reserved [4]byte
Operand1 Operand
Operand2 Operand
2021-11-16 15:27:30 -10:00
opHandler opHandler `struc:"skip"`
2021-11-15 20:44:26 -10:00
}