-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace bootloader tools with files from v6 zip file
- Loading branch information
Showing
12 changed files
with
61 additions
and
5 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,21 @@ | ||
5 REM COPYRIGHT 2024 EIRIK STOPLE | ||
10 PRINT "DUMP SMC FLASH TO $6000-$7FFF" | ||
20 OFFSET=0 | ||
21 RAM=$6000 | ||
24 REM SET SMC PAGE TO FIRST PAGE (0) | ||
25 I2CPOKE $42,$90,0 | ||
30 REM START A NEW LINE | ||
40 IF OFFSET < 256 THEN PRINT "00"; | ||
50 PRINT HEX$(OFFSET) " "; | ||
60 FOR I=0 TO 15 | ||
65 BYTE=I2CPEEK($42,$91) | ||
68 POKE RAM,BYTE | ||
70 PRINT " " HEX$(BYTE); | ||
80 RAM=RAM+1 | ||
90 NEXT | ||
100 PRINT " " | ||
110 OFFSET = OFFSET + 16 | ||
120 IF OFFSET < 8192 GOTO 40 | ||
130 PRINT "DUMPED TO $6000-$7FFF" | ||
140 PRINT "DUMP TO SD CARD WITH THE COMMAND" | ||
150 PRINT "BSAVE " CHR$($22) "DUMPSMC.BIN" CHR$($22) ",8,1,$6000,$7FFF" |
Binary file not shown.