cirsim
Version:
Cirsim Circuit Simulator
11 lines (10 loc) • 447 B
HTML
<p>The output of a two-input NAND gate is <em>false</em> if both inputs are true.</p>
<figure><img src="img/nand.png" width="269" height="204" alt="NAND Gate"></figure>
<h3>Truth Table</h3>
<table class="truth-table">
<tr><th>A</th><th>B</th><th>O</th></tr>
<tr><td>0</td><td>0</td><td>1</td></tr>
<tr><td>0</td><td>1</td><td>1</td></tr>
<tr><td>1</td><td>0</td><td>1</td></tr>
<tr><td>1</td><td>1</td><td>0</td></tr>
</table>