mirror of
https://github.com/pkimpel/retro-220.git
synced 2026-02-01 06:13:01 +00:00
1. Initial implementation of integer and floating arithmetics, RND (16), and EXT (17) (not fully tested yet). 2. Implement Console Keyboard, integration with main Console, and KAD (08) instruction. 3. Implement BCS (38). 4. Correct S-to-C and S-to-P stop detection. 5. Improvements to lamp glow computation and management. 6. Implement right-hand clear bars on Console registers.
86 lines
2.9 KiB
HTML
86 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="./B220ConsoleKeyboard.js"></script>
|
|
<script src="./B220ControlConsole.js"></script>
|
|
|
|
<!--
|
|
<script src="./B220ConsoleOutput.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="./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 & 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>
|
|
|
|
<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> |