index.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <html>
  2. <head>
  3. <title>Beginner's tutorial</title>
  4. </head>
  5. <body bgcolor="FFFFFF">
  6. <h1>Beginner's tutorial</h1>
  7. <p><b>Next:</b> <a href="tutor-orient.html">Step 0: Orienting yourself</a></p>
  8. <p>Welcome to Logisim!</p>
  9. <p>Logisim allows you to design and simulate digital circuits. It
  10. is intended as an educational tool, to help you learn how circuits
  11. work.</p>
  12. <p>To practice using Logisim, let's build a XOR circuit -
  13. that is, a circuit that takes two inputs (which we'll call <em>x</em> and
  14. <em>y</em>) and outputs 0 if the inputs
  15. are the same and 1 if they are different.
  16. The following truth table illustrates.
  17. <center><img src="../../../img-guide/tutorial-xor-table.png" width="163" height="131"></center>
  18. We might design such a circuit on paper.
  19. <center><img src="../../../img-guide/tutorial-xor-circ.png" width="323" height="147"></center>
  20. But just because it's on paper doesn't mean it's right. To verify our
  21. work, we'll draw it in Logisim and test it. As an added bonus, we'll get
  22. a circuit that's looks nicer than what you probably would draw by hand.</p>
  23. <p><a href="tutor-orient.html">Step 0: Orienting yourself</a>
  24. <br><a href="tutor-gates.html">Step 1: Adding gates</a>
  25. <br><a href="tutor-wires.html">Step 2: Adding wires</a>
  26. <br><a href="tutor-text.html">Step 3: Adding text</a>
  27. <br><a href="tutor-test.html">Step 4: Testing your circuit</a>
  28. </p>
  29. <p>Enjoy your circuit-building!</p>
  30. <p><b>Next:</b> <a href="tutor-orient.html">Step 0: Orienting yourself</a></p>
  31. </body>
  32. </html>