Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 650 Bytes

iii.3.53-or.md

File metadata and controls

23 lines (13 loc) · 650 Bytes

III.3.53 or – bitwise OR

Format Instruction Description
60 or Bitwise OR of two integer values, returns an integer.

Stack Transition:

…, value1, value2 → …, result

Description:

The or instruction computes the bitwise OR of the top two values on the stack and leaves the result on the stack.

The acceptable operand types and their corresponding result data type are encapsulated in Table 5: Integer Operations.

Exceptions:

None.

Correctness and Verifiability:

See Table 5: Integer Operations.