CALL INTRO
Contents |
Effect
Makes a vertical scroll with two screen 12 pictures loaded on the two different pages on this screen (and uses screen 8 on a MSX2 computer).
To get a clean scroll, you need first to clear the VRAM with CALL FILVRM.
Syntax
CALL INTRO
Example
10 BLOAD"FORTUIN.BIN",R 20 SL=PEEK(&HF342):POKE &HFCC9+(SL AND 3)*16+(SL AND 12)+1,32 30 SCREEN 8:_DISSCR:COLOR 255,0,0:CLS 40 SET PAGE 0,0:_FILVRM:BLOAD"FORTUIN1.PIC",S 50 SET PAGE 1,1:BLOAD"FORTUIN2.PIC",S 60 _ENASCR:_INTRO 70 GOTO 70