1
0
mirror of https://github.com/pkimpel/retro-220.git synced 2026-04-28 04:46:32 +00:00

Commit BALGOL-Overlay transcription WIP as of 2016-12-29.

Commit further corrections to Pass 1 of BAC-Assembler.html.
This commit is contained in:
Paul Kimpel
2016-12-29 10:19:49 -08:00
parent 86664b609c
commit db25dabd6f
2 changed files with 620 additions and 2 deletions

View File

@@ -219,7 +219,7 @@ window.addEventListener("load", function() {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 0-0F
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 10-1F
0, 0, 0, 33, 13, 24, 10, 0, 24, 4, 14, 0, 23, 20, 3, 21, // 20-2F
80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 0, 0, 0, 0, 0, 0, // 30-3F
80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 0, 13, 0, 0, 0, 0, // 30-3F
34, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, // 40-4F
57, 58, 59, 62, 63, 64, 65, 66, 67, 68, 69, 0, 0, 0, 0, 0, // 50-5F
0, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, // 60-6F
@@ -799,7 +799,8 @@ window.addEventListener("load", function() {
} else {
raw += c;
code = c.charCodeAt(0);
appendCode((code < asciiFilter.length ? asciiFilter[code] : 0));
appendCode((code < asciiFilter.length ? asciiFilter[code]
: (code == 0xA4 ? 04 : 0))); // the lozenge
++x;
}
}