DAVIAC-web/index.php

39 lines
1.7 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<title>DAVIAC: A relay computer</title>
<link rel="stylesheet" href="style.css" type="text/css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="background">
<div class="grid-container">
<?php include("header.php"); ?>
<?php include("sidebar.php"); ?>
<div id="main-text" class="main">
<h2>Architectural Overview (click image for PDF)</h2>
<a href="pdf/Arch.pdf"><img src="images/Arch-1.png" alt="A block diagram of the architecture of the DAVIAC-1 along with the instruction set and machine code" /></a>
<h2>Physical Build Overview</h2>
<a href="images/DAVIAC-1.jpg"><img src="images/DAVIAC-1.jpg" alt="All the PCBs for the DAVIAC-1 populated with relays, LEDs and other miscellaneous parts mounted neatly on some particle hinged board mounted to the wall. Miscellaneous vintage test equipment and a laptop with a lot of stickers on it in the foreground." /></a>
<table>
<tr><td>Name</td><td>4 Pole</td><td>2 Pole</td><td>1 pole</td></tr>
<tr><td>CPUA</td><td>35</td><td>10</td><td>21</td></tr>
<tr><td>CPUB</td><td>22</td><td>5</td><td>46</td></tr>
<tr><td>Regs</td><td>34</td><td>1</td><td>54</td></tr>
<tr><td>PC</td><td>27</td><td>0</td><td>31</td></tr>
<tr><td>RAM8</td><td>21</td><td>9</td><td>86</td></tr>
<tr><td>FP</td><td>0</td><td>3</td><td>2</td></tr>
</table>
<p><bold>Total: 416</bold>, High density RAM32 boards are 484 each</p>
</div>
<?php include("footer.php"); ?>
</div>
</div>
</body>
</html>