vm: implement NOTEQUAL opcode
This commit is contained in:
parent
70f0c656b0
commit
9081211f12
4 changed files with 27 additions and 9 deletions
|
@ -98,11 +98,12 @@ const (
|
|||
RIGHT Opcode = 0x81
|
||||
|
||||
// Bitwise logic
|
||||
INVERT Opcode = 0x90
|
||||
AND Opcode = 0x91
|
||||
OR Opcode = 0x92
|
||||
XOR Opcode = 0x93
|
||||
EQUAL Opcode = 0x97
|
||||
INVERT Opcode = 0x90
|
||||
AND Opcode = 0x91
|
||||
OR Opcode = 0x92
|
||||
XOR Opcode = 0x93
|
||||
EQUAL Opcode = 0x97
|
||||
NOTEQUAL Opcode = 0x98
|
||||
|
||||
// Arithmetic
|
||||
SIGN Opcode = 0x99
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue