Half Adder
Binary
The Half Adder
node takes in 2 boolean values (A
and B
), and returns 2 boolean values (Y
and CarryOut
). In computing & electronics, this is called a half adder, and helps with boolean math.
Inputs
A (bool)
The first boolean input value.
B (bool)
The second boolean input value.
Outputs
Y (bool)
The result boolean output value.
CarryOut (bool)
The carry out boolean output value.