Diferencia entre revisiones de «Diseño de circuitos digitales y tecnología de computadores/Sumadores»

Contenido eliminado Contenido añadido
esbozo semisumador
 
Añadidos semisumador y sumador total
Línea 1:
 
==Semisumador binario (half adder)==
 
<p>Suma dos bits y proporciona el acarreo.</p>
 
<table cellpadding="5">
<tr><th>Tabla de verdad</th><th>Funciones de salida</th><th>Circuito combinacional</th><th>Bloque funcional</th></tr>
<tr>
<td>
{| class="wikitable" style="text-align:center;"
|-
| '''A''' || '''B''' || '''&sum;''' || '''C'''
|-
| 0 || 0 || 0 || 0
|-
| 0 || 1 || 1 || 0
|-
| 1 || 0 || 1 || 0
|-
| 1 || 1 || 0 || 1
|}
</td>
<td>
<p>Suma:<br /> &sum; = A<span style="text-decoration:overline">B</span> + <span style="text-decoration:overline">A</span>B = A&oplus;B</p>
<p> Acarreo (carry):<br /> C = AB </p>
</td>
<td>[[Archivo:Half Adder Discret.svg|Circuito combinacional del semisumador binario]]</td>
<td>[[Archivo:Half Adder Symbol.svg|Símbolo IEC del semisumador binario]]</td>
</tr>
</table>
 
==Sumador total (full adder)==
 
<p>Suma dos bits y el acarreo de entrada de una suma anterior, y proporciona acarreo de salida.</p>
 
<table cellpadding="2">
<tr>
<td>
{| class="wikitable" style="text-align:center;"
|-
| '''A''' || '''B''' || '''C<sub>i</sub>''' || '''&sum;''' || '''C'''
|-
| 0 || 0 || 0 || 0 || 0
|-
| 0 || 0 || 1 || 1 || 0
|-
| 0 || 1 || 0 || 1 || 0
|-
| 0 || 1 || 1 || 0 || 1
|-
| 1 || 0 || 0 || 1 || 0
|-
| 1 || 0 || 1 || 0 || 1
|-
| 1 || 1 || 0 || 0 || 1
|-
| 1 || 1 || 1 || 1 || 1
|}
</td>
<td>
<p>Suma:<br />
&sum; = <span style="text-decoration:overline">A</span> <span style="text-decoration:overline">B</span> C<sub>i</sub> +
<span style="text-decoration:overline">A</span> B <span style="text-decoration:overline">C<sub>i</sub></span> +
A <span style="text-decoration:overline">B</span> <span style="text-decoration:overline">C<sub>i</sub></span> +
A B C<sub>i</sub> = A&oplus;B&oplus;C<sub>i</sub>
</p>
<p>Acarreo de salida (carry output):<br /> C = AB + BC<sub>i</sub> + AC<sub>i</sub> </p>
</td>
<td>[[Archivo:Full Adder Symbol.svg|Símbolo IEC del sumador total]]</td>
</tr>
</table>
 
 
{{en desarrollo}}