September 24, 2010 – New ROM Hunt
|
In sorting thru the lastest software shipment I came across a little program which claims to identify whether your Model I ROM was v1.0, 1.1, 1.2, 1.3, or other. The ROMs out in the wild are either v1.0, v1.2, or v1.3. Does anyone have a Model I system with v1.1?? The program is as follows:
10 REM PROGRAM TO FIND VERSION OF MODEL I ROM
20 CLS
30 FOR I=11264 TO 12287:V=PEEK(I):S=S+V:NEXT I: X=S/16
40 A=(X-FIX(X))*16:Y=FIX(X)/16:B=(Y-FIX(Y))*256
50 V=(A+B)
60 IF V=176 PRINT"ROM 1.0": GOTO 100
70 IF V=142 PRINT"ROM 1.1": GOTO 100
80 IF V=10 PRINT"ROM 1.2": GOTO 100
90 IF V=162 PRINT"ROM 1.3" ELSE PRINT"VERSION OF ROM UNKNOWN"
100 END
|
|