Also note that long programs should be RENUMBERed in FAST
mode as they will take a long time to renumber (up to 30 minutes
for a 55K program in FAST).
If you only have a 40 column display use FAST:RENUMBER ...
<RETURN>. Then type SLOW <RETURN>. While
RENUMBERing is taking place you will not see anything
happening. When RENUMBERING has finished your display will
return.
If you have an 80 column display or 40/80 column display select
the 80 column screen before typing FAST.
RESTORE/ RESTORE
Reset READ pointer to DATA statement so the DATA can be
reREAD
RESTORE C64 mode
RESTORE [line #] C128 mode
When executed in a program, the pointer to the item in a DATA
statement that is to be READ next is reset to the first item in the
DATA statement. This provides the capability to reREAD the data.
If a line number follows the RESTORE statement the READ
pointer is set to the first data item after the specified program line.
Otherwise the pointer is reset to the beginning of the BASIC
program, ln C64 mode there is no option to specify the line
number, i.e. you can only RESTORE to the beginning of the
program.
EXAMPLES:
10 FOR I = 1 TO 3
20 READ X
30 T = X+ T
40 NEXT
45 PRINT T
50 RESTORE
69 GOTO 10
70 DATA 10.20,30
17-65