index.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <html>
  2. <head>
  3. <title>Combinational analysis</title>
  4. </head>
  5. <body bgcolor="FFFFFF">
  6. <h1>Combinational analysis</h1>
  7. <center><img src="../../../../en/img-guide/analyze-min.png" width="466" height="323"></center>
  8. <p>All circuits fall into one of two well-known categories:
  9. In a <strong>combinational circuit</strong>,
  10. all circuit outputs are a strict <em>combination</em> of the current
  11. circuit inputs, whereas in a <strong>sequential circuit</strong>,
  12. some outputs may depend on past inputs (the <em>sequence</em> of
  13. inputs over time).</p>
  14. <p>The category of combinational circuits is the simpler of the
  15. two. Practitioners use three major techniques for summarizing
  16. the behavior of such circuits.
  17. <ul>
  18. <li>logic circuits
  19. <li>Boolean expressions, which allow an algebraic representation
  20. of how the circuit works
  21. <li>truth tables, which list all possible input combinations and
  22. the corresponding outputs
  23. </ul>
  24. The <em>Combinational Analysis</em> module of Logisim allows
  25. you to convert between these three representations in all
  26. directions. It is a particularly handy way of creating and
  27. understanding circuits with a handful of one-bit inputs and outputs.</p>
  28. <blockquote><a href="open.html">Opening Combinational Analysis</a>
  29. <br><a href="table.html">Editing the truth table</a>
  30. <br><a href="expr.html">Creating expressions</a>
  31. <br><a href="gen.html">Generating a circuit</a>
  32. </blockquote>
  33. <p><strong>Next:</strong> <a href="open.html">Opening Combinational Analysis</a>.</p>
  34. </body>
  35. </html>