Created
March 11, 2026 05:26
-
-
Save mit41301/49836ace34b17d866519d69c055a655f to your computer and use it in GitHub Desktop.
08k Code FLASH or ROM DUMP program 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
| 100 REM Utility to hex dump ROM code from Intel 8052-BASIC MCU S.Quest '97 | |
| 110 COU=0 : BEG=0 : NDD=8191 : FST=0 | |
| 120 PH1. BEG+FST," = ", : FOR CYC=BEG TO NDD | |
| 130 COU=COU+1 : IF COU=17 PH1. CYC+FST," = ", : COU=1 | |
| 140 PH0. CBY(FST+CYC), : NEXT CYC : PRINT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment