neoneo-go/pkg/vm/state.go

11 lines
100 B
Go
Raw Normal View History

package vm
type vmstate byte
const (
NONE = 0
HALT = 1 << 0
FAULT = 1 << 1
BREAK = 1 << 2
)