UNPKG

cirsim

Version:

Cirsim Circuit Simulator

11 lines (10 loc) 476 B
<p>The output of a NOR gate is <em>false</em> if either or both inputs are true. Otherwise, it is <em>true</em>.</p> <figure><img src="img/nor.png" width="268" height="208" alt="NOR 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>0</td></tr> <tr><td>1</td><td>0</td><td>0</td></tr> <tr><td>1</td><td>1</td><td>0</td></tr> </table>