1
0
mirror of https://github.com/pkimpel/retro-220.git synced 2026-01-11 23:52:46 +00:00
Paul Kimpel cc8fd9123b Implement cursor for Teletype output.
Also:
. Implement separate B220Version module.
. Correct 220 internal code to ANSI translate table in
B220ControlConsole.js.
. Correct minor typos in comments.
2022-06-30 12:19:06 -07:00

95 lines
3.1 KiB
HTML

<!DOCTYPE html>
<html>
<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.
* 2018-01-04 P.Kimpel
* Remove deprecated Application Cache (appcache) configuration.
***********************************************************************/
-->
<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/B220Version.js"></script>
<script src="../emulator/B220Processor.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="./B220PaperTapeReader.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>
<tr>
<td><a href="https://github.com/pkimpel/retro-220/wiki" target="_blank">
Project Wiki</a>
<td class=center>&nbsp;
<td class=rj>&nbsp;
</table>
<div id=CenteredBody>
<img id=B220Image src="./resources/B220-Site.jpg"
alt="Burroughs 220 System, Michigan National Bank, ca. 1960">
<br>
<button id=StartUpBtn>
Start the Emulator
</button>
&nbsp;&nbsp;&nbsp;
<button id=ConfigureBtn>
Configure the 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>