OPOR (instruction)
Jump to navigation
Jump to search
OPOR | size: | 1 |
args: | 2 | |
0x07 | ||
Bitwise OR |
Pops 2 arguments from the stack, performs bitwise OR operation and pushes the result onto stack.
Typical c-like syntax:
var1 = var2 | 1;
Typical assembler usage:
PUSHV var2
PUSHII 1
OPOR
POPV var1