mirror of
https://github.com/pkimpel/retro-220.git
synced 2026-01-27 04:21:53 +00:00
1. Rework Processor internal timing and throttling mechanism during I/O. 2. Revise Console statistics display, add instruction counter. 3. Correct (again) CFA/CFR instruction when sign is included in field. 4. Correct B-register modification of words during Cardatron and magnetic tape input. 5. Clear Processor alarms on Reset/Transfer. 6. Add links to wiki on index and home pages. 7. Eliminate B220Util CSS class functions in favor of DOM classList methods. 8. Attempt to reproduce "Sundland Beige" color for the panels. 9. Correct formatting of tab stops for B220ConsolePrinter. 10. Reduce Whippet printer speed from 5000 to 1000 cps. 11. Reduce Console update frequency from every 50 to 100 ms; increase lamp glow update factor from 0.25 to 0.75. 12. Allow click of white button below console register lamps in addition to clicking the lamps themselves to toggle the lamp state. 13. Rework the way that white vertical bars are drawn on registers. 14. Allow B220PaperTapeReader to properly send sign-2 alphanumeric words with trailing spaces if the tape image file has been space-trimmed on the right. 15. Clear the paper tape reader view window when loading new tapes. 16. Revise yet again the setCallback() delay deviation adjustment algorithm.
94 lines
3.1 KiB
HTML
94 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/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 & 220 Blog</a>
|
|
<tr>
|
|
<td><a href="https://github.com/pkimpel/retro-220/wiki" target="_blank">
|
|
Project Wiki</a>
|
|
<td class=center>
|
|
<td class=rj>
|
|
</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>
|
|
|
|
<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> |