Or Specification
================

Description:
------------
The OR gate has two inputs and one output. If at least one input is 1, the output is 1. Otherwise the output is 0.


Interface Specification:
------------------------
Inputs: in1, in2;
Outputs: out;


Graphical Representation:
-------------------------
       ____
-in1--|    |
      | OR |--out-
-in2--|____|


Truth Table:
------------
 in1 | in2 || out
 ----------------
 0   | 0   || 0
 0   | 1   || 1
 1   | 0   || 1
 1   | 1   || 1