Assembler Editor

BUG: The manual contains an error on page 65 where it instructs you to CLOAD object code from a tape.  It’s not possible to CLOAD object code.  Instead, you must use the following routine to load your object code:

100 TRAP 260
110 OPEN #3,4,0,"C:"
120 GET #3,X
130 GET #3,X
140 GET #3,X
150 GET #3,Y
160 ADSTART=256*Y+X
170 GET #3,X
180 GET #3,Y
190 ADEND=256*Y+X
200 ADCUR=ADSTART
210 GET #3,X
220 POKE ADCUR,X
230 ADCUR=ADCUR+1
240 IF ADCUR<=ADEND THEN GOTO 210
250 GOTO 120
260 CLOSE #3
270 END


Return to main menu