Created
March 8, 2026 13:56
-
-
Save mit41301/c22a2eb47f23b1f6d578ff900ac3c45b to your computer and use it in GitHub Desktop.
DUMP the internal ROM using BASIC-52
This file contains hidden or 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
| 10 INPUT "Enter start address:",A | |
| 20 PH1. A, : FOR I=0 TO 15 : PRINT CHR(8), : PH0. CBY(A+I), : NEXT | |
| 30 PRINT CHR(8)," ", : FOR I=0 TO 15 | |
| 40 IF CBY(A+I)>32.AND.CBY(A+I)<127 THEN P.CHR(CBY(A+I)), ELSE P. ".", | |
| 50 NEXT : PRINT : A=A+16 | |
| 60 IF GET=0 THEN 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment