cpu-simulator/build/registers/index.html

24 lines
860 B
HTML
Executable File

<!doctype html>
<html>
<head>
<title>Build a multiplexer</title>
<link rel="stylesheet" type="text/css" href="../css/style.css" />
</head>
<body>
<h1>Build a multiplexer!</h1>
<p>
The multiplexer chip used in this CPU is a <b>16:8</b> mux - this means it can select between <i>two</i> <b>8-bit</b> inputs.
<br>
Don't worry, this is an extremely simple chip to construct. To start with, you must build from logic gates a <b>2:1</b> mux which can switch between two individual bits. Then you can use 8 of these <b>2:1</b> muxes to build this chip.
</p>
<h3>Start building</h3>
<ol>
<li><a href="1/">construct <b>2:1 mux</a></b></li>
<li><a href="2/">assemble <b>16:8 mux</a></b></li>
</ol>
<p>
Once you are finished, you can <a href="/cpu/">return to the CPU</a>.
</p>
</body>
</html>