home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_01 / 2n01043a < prev    next >
Text File  |  1990-06-26  |  520b  |  25 lines

  1. (*
  2.     Ega/Vga Graphics Driver for Panel Unit
  3.  
  4.         Turbo Pascal 4 Unit
  5.  
  6.         **************************************************
  7.         NOTE:   All compilations should have the boolean
  8.                 evaluation option set to "short-circuit"
  9.         **************************************************
  10.  
  11.     June 26, 1990  --  Michael Kelly  --  Version 1.01    *)
  12.  
  13. Unit PanelDrv;
  14.  
  15. Interface
  16.  
  17. Procedure EgaVgaDriverProc;
  18.  
  19. Implementation
  20.  
  21. Procedure EgaVgaDriverProc; external;
  22. {$L EGAVGA.OBJ }
  23.  
  24. End.
  25.