Program Scre_E8; {shows an 8-needle Epson graphic file (some modes at least)
                  on a VGA Screen.
                  by J. Hollan}
uses G_Scree, crt, graph;
var c : char;
begin
if paramcount>0 then
 if pos('?',ParamStr(1))=0 then
  begin
   ReadE9Scr(paramstr(1),'');
   repeat until keypressed;
   c:=readkey;
   closegraph;
   halt
  end;

{else}
       highvideo;
       writeln(
'Scre_E8 <name of the Epson-mode 8-needle graphic file>');
       writeln;
       lowvideo;
       writeln(
'A simple program (version 1.0) plotting such a file');
       writeln(
'  (presumably a hard-copy of the screen from some commercial programme)');
       writeln(
'onto the screen - the program can be modified to add further texts etc.');
       writeln(
'to the picture as usually  -  using Turbo Pascal Graph unit.');
       writeln(
'Jan Hollan, N. Copernicus Obseervatory and Planetarium, December 1993');

end.
