1
0
mirror of https://github.com/pkimpel/retro-220.git synced 2026-04-30 13:33:07 +00:00

Commit preliminary version 0.00e:

1. Initial implementation of partial-word operators CFA, CFR, IFL, DFL, DLB, BFA, BFR, STA, STR, STB.
2. Implemement ADL, IBB, DBB, RTF, BOF, BRP, BSA, BCH, BCL, BCE, BCU, BCS, SOR, SOH, IOM, LDR, LDB, LBC, LSA, STP, CLA, CLR, CLB, CLL, all shifts.
3. Implement variable-length BCD adder.
4. Additional arithmetics methods for Register class.
5. Correct re-focus of ConsoleKeyboard window.
6. Allow ConsolePrinter CR/LF buttons to operate while in remote state.
This commit is contained in:
Paul Kimpel
2017-05-10 08:45:06 -07:00
parent df29455c91
commit 9fa3d967d2
8 changed files with 890 additions and 477 deletions

View File

@@ -334,7 +334,7 @@ B220SystemConfig.prototype.loadConfigDialog = function loadConfigDialog() {
this.$$(prefix + "NotWrite").checked = unit.notWriteSwitch;
} // for x
this.$$("MessageArea").textContent = "205 System Configuration loaded.";
this.$$("MessageArea").textContent = "220 System Configuration loaded.";
this.window.focus();
};
@@ -447,7 +447,7 @@ B220SystemConfig.prototype.saveConfigDialog = function saveConfigDialog() {
} // for x
this.flushHandler(); // store the configuration
this.$$("MessageArea").textContent = "205 System Configuration updated.";
this.$$("MessageArea").textContent = "220 System Configuration updated.";
this.window.close();
};