Difference between revisions of "OPOR (instruction)"

From Final Fantasy XII Wiki
Jump to navigation Jump to search
(Created page with "{{Instruction|op_name=OPOR|op_code=0x07|op_size=1|op_args=2|op_desc=Bitwise OR}} Pops 2 arguments from the stack, performs bitwise OR operation and '''pushes the result onto...")
 
(No difference)

Latest revision as of 13:56, 22 July 2019

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