Files
subcoding/vm/operand.go
2021-11-16 20:41:57 -10:00

16 lines
239 B
Go

package vm
type OperandType uint8
const (
Literal OperandType = 0
FunctionMemoryIndex = 1
GlobalMemoryIndex = 2
)
type Operand struct {
Type OperandType
Reserved [3]byte
Value uint64
}