We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94e1b16 commit 1c84f13Copy full SHA for 1c84f13
2 files changed
editor.ts
@@ -94,9 +94,7 @@ namespace microcode {
94
if (this.programChanged) {
95
this.programChanged = false
96
this.app.save(SAVESLOT_AUTO, this.progdef.toBuffer())
97
- console.log(this.progdef.toString())
98
}
99
- // runProgram(this.progdef)
100
101
102
private pickDiskSLot() {
language.ts
@@ -412,7 +412,7 @@ namespace microcode {
412
413
public toString() {
414
const res = this.pages.map(page => page.toString())
415
- return res.map((ps, i) => `Page ${i + 1}\n${ps}`).join("\n")
+ return res.map((ps, i) => `Page ${i + 1}\n${ps}\nEOP`).join("\n")
416
417
418
0 commit comments