WOLFRAM SYSTEM MODELER
FullAdderCEFull 1-bit Adder. |
|

SystemModel["EducationExamples.ElectricalEngineering.EightBitAdder.Components.FullAdderCE"]

The full adder adds two 1-bit numbers together. In addition, the adder takes a 1-bit carry-in signal. Output from the binary addition is a 1-bit sum and a 1-bit carry-out.
The output from the adder is subject to the following truth table:
| a | b | c_in | c_out | s |
|---|---|---|---|---|
| 1 | 0 | 0 | 0 | 1 |
| 0 | 1 | 0 | 0 | 1 |
| 0 | 0 | 1 | 0 | 1 |
| 1 | 1 | 0 | 1 | 0 |
| 0 | 1 | 1 | 1 | 0 |
| 1 | 0 | 1 | 1 | 0 |
| 1 | 1 | 1 | 1 | 1 |
| 0 | 0 | 0 | 0 | 0 |
| b |
Type: DigitalInput Description: Input DigitalSignal as connector |
|
|---|---|---|
| a |
Type: DigitalInput Description: Input DigitalSignal as connector |
|
| c_in |
Type: DigitalInput Description: Input DigitalSignal as connector |
|
| c_out |
Type: DigitalOutput Description: Output DigitalSignal as connector |
|
| s |
Type: DigitalOutput Description: Output DigitalSignal as connector |
| adder |
Type: FullAdder Description: Adding circuit for binary numbers with input carry bit |
|---|
|
EducationExamples.ElectricalEngineering.EightBitAdder.Components 8-bit adder component. |