OPOR (instruction)

From Final Fantasy XII Wiki
Revision as of 13:56, 22 July 2019 by Admin (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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