DAVIAC-web/programming.php

37 lines
1.1 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>Assembler and Loader </h2>
<p> The DOS binary of the assembler and potentially source code will be provided at a later date </p>
<p> The program's <a href="hillbilly1/Hillbilly1.txt">help output</a> provides some usage info and the assembler -> machine code mappings </p>
<h2>Programming Examples</h2>
<ul>
<li>Adding 2 16 bit numbers</li>
<li><ul>
<li><a href="hillbilly1/ADD16.asm">ADD16.ASM</a></li>
<li><a href="hillbilly1/ADD16.lst">ADD16.LST</a></li>
<li><a href="hillbilly1/ADD16.hex">ADD16.HEX</a></li>
</ul></li>
<li>More soon</li>
</ul>
<?php include("footer.php"); ?>
</div>
</div>
</body>
</html>