forked from TrueCloudLab/neoneo-go
ddd1d92ff1
The idea here is to preserve the history of `dev` branch development and its code when merging with the `master`. Later this code could be moved into the masters code where appropriate.
20 lines
583 B
Go
20 lines
583 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 is the running state of the vm
|
|
// NONE signifies that the vm is ready to process an opcode
|
|
NONE = 0
|
|
// HALT is a stopped state of the vm
|
|
// where the stop was signalled by the program completion
|
|
HALT = 1 << 0
|
|
// FAULT is a stopped state of the vm
|
|
// where the stop was signalled by an error in the program
|
|
FAULT = 1 << 1
|
|
// BREAK is a suspended state for the VM
|
|
// were the break was signalled by a breakpoint
|
|
BREAK = 1 << 2
|
|
)
|