vm: implement PUSHA/CALLA opcodes
This commit is contained in:
parent
7fcd537b09
commit
1d3fb3d6f5
5 changed files with 167 additions and 124 deletions
|
@ -15,6 +15,7 @@ const (
|
|||
PUSHINT128 Opcode = 0x04
|
||||
PUSHINT256 Opcode = 0x05
|
||||
|
||||
PUSHA Opcode = 0x0A
|
||||
PUSHNULL Opcode = 0x0B
|
||||
|
||||
PUSHDATA1 Opcode = 0x0C
|
||||
|
@ -64,6 +65,7 @@ const (
|
|||
JMPLEL Opcode = 0x33
|
||||
CALL Opcode = 0x34
|
||||
CALLL Opcode = 0x35
|
||||
CALLA Opcode = 0x36
|
||||
|
||||
// Exceptions
|
||||
ABORT Opcode = 0x37
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue