Serial sequential adder
v.1.0
Example documentation project, author Vladimir Petrović
|
Behavioral architechture for fulladder. More...
Output sum is generated using the following logic function: s = (a xor b) xor c.
Output carry is generated using the following logic function: cout = (a and b) or (cin and (a xor b)).
Definition at line 39 of file fulladder.vhd.