[comp.lang.pascal] Graphics Printscreen

pfunke@qa1.pica.army.mil (08/14/89)

The program EPSON.COM is part of an archive with the assembly code
the name of the archive is EGAEPSON.ARC.  This archive is available 
via anonymous ftp from simtel20.army.mil I believe that I have also 
seen it posted on some local BBSs. The driver EPSON.com is loaded on 
bootup and then when my program is ready to print it calls 
interupt 5 as shown below.


.
.
.
var
regs           :registers;
.
.
.
begin
.
.
.
{call interrupt 5 to print the screen}

        intr(05,regs);
end.


					Eric W. Pfunke
					NS&SRD PA&TD
					US ARMY, AMCCOM

pfunke@qa1.pica.army.mil (08/14/89)

The program EPSON.COM is part of an archive with the assembly code
the name of the archive is EGAEPSON.ARC.  This archive is available 
via anonymous ftp from XXXXXXX I believe that I have also seen it posted 
on some local BBSs. The driver EPSON.com is loootup and then when my
program is ready to print it calls interupt 5 as shown below.