Created a page for the Adder node. |
Grammer fix. |
||
| Line 15: | Line 15: | ||
|}} | |}} | ||
The <code>Adder</code> node takes in 3 boolean values (<code>A</code>, <code>B</code>, and <code>CarryIn</code>), and returns 2 boolean values (<code>Y</code> | The <code>Adder</code> node takes in 3 boolean values (<code>A</code>, <code>B</code>, and <code>CarryIn</code>), and returns 2 boolean values (<code>Y</code> and <code>CarryOut</code>). In computing & electronics, this is called an [https://en.wikipedia.org/wiki/Adder_(electronics) adder], and helps with boolean math. | ||
== Inputs == | == Inputs == | ||
Latest revision as of 12:26, 23 May 2024
Adder
Binary
The Adder node takes in 3 boolean values (A, B, and CarryIn), and returns 2 boolean values (Y and CarryOut). In computing & electronics, this is called an adder, and helps with boolean math.
Inputs
A (bool)
The first boolean input value.
B (bool)
The second boolean input value.
CarryIn (bool)
The carry in boolean input value.
Outputs
Y (bool)
The result boolean output value.
CarryOut (bool)
The carry out boolean output value.