December 9, 2010 – Program to Dump ROM to Cassette
|
Kurt Baumgardner wrote a short BASIC program to allow those with Model I’s to dump their ROM’s to cassette if that is their only option. Kurt advises that it needs 16K of RAM and takes a little less than 3 and a half minutes to run. He did not test it on a Model III but assumes, at the very least, that the ROM line would need to be changed from ROM=12 to ROM=14
10 CLS : PRINT " ROM DUMP TO TAPE" : PRINT
20 FOR T = 32512 TO 32537 : READ B : POKE T,B : NEXT T
30 POKE 16526, 0 : POKE 16527, 127
40 ROM = 12 ' 12K OF ROM ... CHANGE AS NEEDED
50 POKE 32523, ROM * 4
60 INPUT "READY CASSETTE"; T
70 T = USR (0)
100 DATA 175, 205, 18, 2, 205, 135, 2, 33, 0, 0
110 DATA 14, 48, 126, 205, 100, 2, 35, 16 ,249
120 DATA 13, 32, 246, 205, 248, 1, 201
|
|