forked from TrueCloudLab/neoneo-go
12 lines
197 B
Go
12 lines
197 B
Go
package vm
|
|
|
|
//Vmstate represents all possible states that the neo-vm can be in
|
|
type Vmstate byte
|
|
|
|
// List of possible vm states
|
|
const (
|
|
NONE = 0
|
|
HALT = 1 << 0
|
|
FAULT = 1 << 1
|
|
BREAK = 1 << 2
|
|
)
|