1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-01-12 00:42:59 +00:00

v1.06a: Minor updates that have accumulated since 2020.

.
This commit is contained in:
Paul Kimpel 2025-06-19 14:42:25 -07:00
parent 04de2efba5
commit fe4de5db6d
5 changed files with 16 additions and 13 deletions

View File

@ -29,7 +29,7 @@ The contents of this project are licensed under the [MIT License](http://www.ope
| Emulator hosting site | http://www.phkimpel.us/B5500/ |
| Burroughs Mark XIII Software Release | http://www.phkimpel.us/B5500/webSite/SoftwareRequest.html |
| B5500 at retroComputingTasmania | http://www.retrocomputingtasmania.com/home/projects/burroughs-b5500 |
| Documents at bitsavers.org | http://bitsavers.org/pdf/burroughs/B5000_5500_5700/ |
| Documents at bitsavers.org | https://bitsavers.org/pdf/burroughs/LargeSystems/B5000_5500_5700/ |
| Release Downloads | https://drive.google.com/folderview?id=0BxqKm7v4xBswM29qUkxPTkVfYzg&usp=sharing |

View File

@ -61,7 +61,7 @@ function B5500CentralControl(global) {
/**************************************/
/* Global constants */
B5500CentralControl.version = "1.06";
B5500CentralControl.version = "1.06a";
B5500CentralControl.memReadCycles = 2; // assume 2 µs memory read cycle time (the other option was 3 µs)
B5500CentralControl.memWriteCycles = 4; // assume 4 µs memory write cycle time (the other option was 6 µs)

View File

@ -58,11 +58,11 @@
<hr>
<p class="center smaller">Like this? Check out the
<a href="http://www.phkimpel.us/ElectroData-205/">ElectroData/Burroughs Datatron 205</a>
and
<a href="http://www.phkimpel.us/Burroughs-220/">Burroughs 220</a>
emulators.
<p class="center smaller">Like this? Check out these emulators:<br>
<a href="http://www.phkimpel.us/ElectroData-205/">ElectroData/Burroughs Datatron 205</a>&nbsp;&bull;
<a href="http://www.phkimpel.us/Burroughs-220/">Burroughs 220</a>&nbsp;&bull;
<a href="http://www.phkimpel.us/Bendix-G15/">Bendix G-15</a>&nbsp;&bull;
<a href="http://www.phkimpel.us/IBM-1620/">IBM 1620</a>
</p>
<p>&nbsp;</p>
@ -71,8 +71,8 @@ Copyright (c) 2013, Nigel Williams and Paul Kimpel &bull; Licensed under the
<a href="LICENSE.txt">MIT License</a>
</div>
<div id=lastModDiv>Revised
2019-04-12
2025-01-04
</div>
</body>
</html>
</html>

View File

@ -1,6 +1,6 @@
<!DOCTYPE html>
<head>
<title>B5500 LibMaint Extract</title>
<title>B5500 LibMaint Mapper</title>
<meta name="Author" content="Paul Kimpel">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Script-Type" content="text/javascript">
@ -516,7 +516,7 @@ window.onload = function() {
<div style="position:relative; width:100%; height:3em">
<div style="position:absolute; left:0; top:0; width:auto">
retro-B5500 LibMaint Tape Extract Utility
retro-B5500 LibMaint Tape Mapper Utility
</div>
<div style="position:absolute; top:0; right:0; width:auto">
<input id=FileSelector type=file size=60>

View File

@ -104,8 +104,11 @@ B5500ConsolePanel.prototype.evaluateNotReady = function evaluateNotReady(config)
B5500ConsolePanel.prototype.focusConsole = function focusConsole() {
/* Globally-accessible function to focus the console panel window */
this.window.focus();
this.$$("LoadBtn").focus();
this.window.blur();
setCallback(null, this, 2000, function() { // delay to allow other windows to open
this.window.focus();
this.$$("LoadBtn").focus();
});
};
/**************************************/