home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
mbug
/
mbug013.arc
/
LORES.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1979-12-31
|
1KB
|
40 lines
program LORES;
{ Demonstration program in Turbo Pascal for
the MicroBee, which sets up the PCG for
LORES Graphics
Written by Bob Burt }
const
title = '*** LORES Graphics Characters ***';
space18 = ' ';
var
count : integer;
{$I normal.pro}
{$I lores.pro}
begin {main}
clrscr;
write(space18);
writeln(title,^M^J);
write('Standard Inverse Characters :');
writeln; writeln;
for count := 128 to 256 do
begin
if (count mod 16) = 0 then write(^M^J^M^J,space18);
write(chr(count),' ')
end;
delay(3000);
GotoXY(1,3);write(^G,'Now changed to LORES :'); ClrEol; writeln;
lores;
delay(5000);
normal;
writeln;
writeln(^G,' Changes back to Inverse Set on call to NORMAL');
writeln('(and also would default to Inverse Set on Exit from Program)')
end {main}.