1
0
mirror of https://github.com/pkimpel/retro-220.git synced 2026-01-21 10:12:23 +00:00
Paul Kimpel df29455c91 Commit version 0.00d:
1. Implement console teletype printer and paper tape punch devices.
2. Correct timing mechanism and operation complete processing for asynchronous (I/O) processor mode.
3. Delete extraneous alarm toggles from B220Processor.
4. Correct Reset And Transfer switch so it will work when the Processor is running.
5. Implement Hello World default program for SPO at address 0020.
6. Change keyboard keystroke assignments for B220ConsoleKeyboard.
7. Implement Reset-to-Defaults feature for B220SystemConfig.
8. Implement DOM Element.classList for B220Util class attribute manipulation.
9. Minor typo correction to BALGOL-Generator.bacg.
2017-04-29 13:41:02 -07:00

87 lines
2.9 KiB
HTML

<!DOCTYPE html>
<html manifest="B220Manifest.appcache">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>retro-220 Emulator</title>
<!--
/***********************************************************************
* retro-220/webUI B220.html
************************************************************************
* Copyright (c) 2017, Paul Kimpel.
* Licensed under the MIT License, see
* http://www.opensource.org/licenses/mit-license.php
************************************************************************
* Burroughs 220 Emulator home page.
************************************************************************
* 2017-01-01 P.Kimpel
* Original version, from retro-205 D205.html.
***********************************************************************/
-->
<meta name="Author" content="Paul Kimpel">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Style-Type" content="text/css">
<link id=defaultStyleSheet rel=stylesheet type="text/css" href="B220Common.css">
<link id=homeStyleSheet rel=stylesheet type="text/css" href="B220.css">
<script src="./B220PanelUtil.js"></script> <!-- must be first -->
<script src="./B220Util.js"></script>
<script src="./B220SetCallback.js"></script>
<script src="./B220SystemConfig.js"></script>
<script src="../emulator/B220Processor.js"></script>
<!--
<script src="./B220ConsoleInput.js"></script>
<script src="./B220CardatronInput.js"></script>
<script src="./B220CardatronOutput.js"></script>
<script src="./B220CardatronControl.js"></script>
<script src="./B220DataFile.js"></script>
<script src="./B220MagTapeDrive.js"></script>
<script src="./B220MagTapeControl.js"></script>
-->
<script src="./B220ConsoleKeyboard.js"></script>
<script src="./B220ConsolePrinter.js"></script>
<script src="./B220PaperTapePunch.js"></script>
<script src="./B220ControlConsole.js"></script>
<script src="./B220.js"></script>
</head>
<body>
<div id=VersionDiv>
<img id=Retro220Logo src="./resources/retro-220-Logo.png" alt="retro-220 Logo">
<div id=EmulatorVersion></div>
</div>
<h1>Burroughs 220 Emulator</h1>
<hr>
<table id=InfoTable>
<tr>
<td><a href="https://github.com/pkimpel/retro-220/" target="_blank">
Open-Source Project</a>
<td id=StatusMsg>
<td class=rj><a href="http://datatron.blogspot.com/" target="_blank">
Burroughs 205 &amp; 220 Blog</a>
</table>
<div id=CenteredBody>
<img id=B220Image src="./resources/B220-Site.jpg"
alt="Burroughs 220 System, ca. 1960">
<br>
<button id=StartUpBtn>
Start the Emulator
</button>
&nbsp;&nbsp;&nbsp;
<button id=ConfigureBtn>
Configure System
</button>
<div id=PageFooter>
<i>(Caution: Closing this window, minimizing it, or placing the page on a non-active tab may cause the emulator to run very slowly)</i>
</div>
</div>
</body>
</html>