1
0
mirror of https://github.com/pkimpel/retro-220.git synced 2026-02-23 15:42:39 +00:00

1. Commit completed initial transcription of BALGOL compiler generator listing -- not yet proofed.

2. Commit correction to BAC-Assembler: $$ strings represent an embedded carriage return, which prints as "$" on Cardatron.
This commit is contained in:
Paul Kimpel
2017-02-12 08:30:51 -08:00
parent 6702824907
commit ee513aec18
2 changed files with 677 additions and 2 deletions

View File

@@ -682,8 +682,8 @@ window.addEventListener("load", function() {
c = text.charAt(x);
if (c == "$") {
++x; // bypass the second "$"
doubleDollar = true;// don't know what this means yet
appendCode(16); // but for now we'll treat it as a carriage return
doubleDollar = true;
appendCode(16); // carriage return prints as $ on Cardatron
}
}
}