home *** CD-ROM | disk | FTP | other *** search
- program thisisatest;
-
- var
- mode, anx, any : integer;
-
- {$I lscreen.pas}
-
- begin
- writeln('Enter the mode number :');
- writeln('0 : 320x200x256');
- writeln('1 : 600x400x256');
- writeln('2 : 640x480x256');
- writeln('3 : 800x600x256');
- writeln('4 : 1024x768x256');
- write('>');
- readln(mode);
- initsvga(mode);
- loadscreen('city1.dny');
- quickpal('dp.pal',1);
- quickpal('dp.pal',2);
- quickpal('dp.pal',3);
- quickpal('dp.pal',4);
- end.
-
-