-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: validate line numbers on split bank
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#autostart 1 | ||
5 RUN AT 3: PRINT "<<< MULTI_BANK_OUTPUT >>>" | ||
10 LOAD "BANK20" BANK 20 | ||
15 LOAD "BANK21" BANK 21 | ||
17 LOAD "BANK22" BANK 22 | ||
20 PRINT "BASIC ON THE..." | ||
30 BANK 20 GO SUB 30 | ||
35 BANK 21 GO SUB 30 | ||
37 BANK 22 GO SUB 30 | ||
40 GO TO 20 | ||
|
||
#bankfile BANK20 | ||
30 PRINT "20 ZX" | ||
40 RETURN | ||
|
||
#bankfile BANK21 | ||
30 PRINT "21 SPECTRUM" | ||
40 RETURN | ||
|
||
#bankfile BANK22 | ||
30 PRINT "22 NEXT!" | ||
40 RETURN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters