Files
subcoding/vm/instruction.go
2021-11-18 19:56:58 -10:00

11 lines
152 B
Go

package vm
type Instruction struct {
OpCode OpCodeType
Reserved [4]byte
Operand1 Operand
Operand2 Operand
opHandler opHandler `struc:"skip"`
}