home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frostbyte's 1980s DOS Shareware Collection
/
floppyshareware.zip
/
floppyshareware
/
DOOG
/
INFOP131.ZIP
/
PAGE_00.INC
< prev
next >
Wrap
Text File
|
1990-09-04
|
2KB
|
62 lines
procedure page_00;
var
x, y: word;
procedure center(s: string);
begin
GotoXY((twidth div 2) - (Length(s) div 2), WhereY);
Writeln(s)
end;
begin
TextColor(LightGreen);
Window((twidth div 2) - 16, 3, (twidth div 2) + 17, 8);
Writeln('█████ █▌ █ █████ █████ ');
Writeln(' █ ██ █ █ █ █ █ ');
Writeln(' █ █ █ █ ███ █ █ █████');
Writeln(' █ █ ██ █ █ █ █ ');
Writeln('█████ █ █ █ █████ ');
Window(1, (tlength div 2) - 4, twidth, (tlength div 2) - 3);
TextColor(LightCyan);
for x:=1 to twidth do
Write(#220);
Window(1, (tlength div 2) - 3, (twidth div 2) - 1, tlength - 2);
TextColor(White);
Writeln('Page 0 - Table of Contents');
Writeln('Page 1 - Machine & ROM Identification');
Writeln('Page 2 - CPU and FPU Identification');
Writeln('Page 3 - RAM type Identification');
Writeln('Page 4 - List of Memory Blocks');
Writeln('Page 5 - Video Identification');
Writeln('Page 6 - Video Information');
Writeln('Page 7 - Keyboard & Mouse Information');
Write('Page 8 - Parallel/Serial Port Info');
Window((twidth div 2) + 1, (tlength div 2) - 3, twidth, tlength - 2);
Writeln('Page 9 - DOS Information');
Writeln('Page 10 - Multiplex Programs');
Writeln('Page 11 - Environment Variables');
Writeln('Page 12 - Device Drivers');
Writeln('Page 13 - DOS Drive Information');
Writeln('Page 14 - BIOS Drive Information');
Writeln('Page 15 - Partition Table Listing');
Writeln('Page 16 - Boot & DOS Drive Parameters');
Write('Page 17 - Thanks');
Window(1, (tlength div 2) + 6, twidth, (tlength div 2) + 7);
TextColor(LightCyan);
for x:=1 to twidth do
Write(#220);
Window(1, 1, twidth, tlength);
x:=twidth div 2;
for y:=(tlength div 2) - 3 to (tlength div 2) + 6 do
begin
GotoXY(x, y);
Write(#219);
end;
Window(1, tlength - 6, twidth, tlength - 1);
TextColor(Yellow);
Writeln;
Center('INFOPLUS - ' + qversion);
Center('by Andrew Rossmann, ' + qdate);
Center('Based on SYSID 4.44, by Steve Grant');
Center('Released to the Public Domain');
end;