home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / egaint.zip / DISKMANT / EGAINT / DRIVER.PAS < prev    next >
Pascal/Delphi Source File  |  1989-07-13  |  2KB  |  73 lines

  1. (*
  2.  * Copyright (C) 1989 Eric Ng
  3.  *
  4.  * Egaint is free software; you can redistribute it and/or modify it
  5.  * under the terms of the GNU General Public License, Version 1, as
  6.  * published by the Free Software Foundation.
  7.  *
  8.  * This program is distributed in the hope that it will be useful, but
  9.  * without any warranty whatsoever, without even the implied warranties
  10.  * of merchantability or fitness for a particular purpose.  See the
  11.  * enclosed GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License
  14.  * along with egaint; see the file COPYING.  If not, write to:
  15.  *
  16.  *       Free Software Foundation, Inc.
  17.  *       675 Massachusetts Avenue
  18.  *       Cambridge, Massachusetts 02139
  19.  *
  20.  *)
  21.  
  22. (*
  23.  * The complete egaint 0.93.05 package can be obtained at either of
  24.  * the following bulletin board systems:
  25.  *
  26.  *       Tom and Sue McDermet's The Odyssey
  27.  *       A carrier of the SmartNet network
  28.  *       Morris Plains, New Jersey
  29.  *       (201) 984-6574
  30.  *
  31.  *       John Looker's Bandersnatch
  32.  *       Phoenix Net #807/7
  33.  *       Basking Ridge, New Jersey
  34.  *       (201) 766-3801
  35.  *
  36.  * In addition, bug reports, modifications, and other assorted
  37.  * queries can be directed, via Internet e-mail, to
  38.  *
  39.  *       erc@{mars,irss,inis}.njit.edu
  40.  *
  41.  * Please note that since I will be returning to college in the
  42.  * fall, future versions of egaint may not be posted on the above
  43.  * bulletin board systems.  The e-mail address, however, should
  44.  * remain valid.
  45.  *
  46.  *)
  47.  
  48. (*
  49.  * Egaint 0.93.05 was originally written in Turbo Pascal 4.0;
  50.  * however, I have just received my upgrade copy of Turbo Pascal 5.5.
  51.  * This new version of the compiler, so far, has not exhibited
  52.  * any problems and compiled without change.  What this means,
  53.  * through interpolation, is that it should (but is not guaranteed to)
  54.  * compile with Turbo Pascal 5.0 (but I can't verify this).
  55.  *
  56.  *)
  57.  
  58. {$B-}
  59. {$D-}
  60. {$I-}
  61. {$L-}
  62. {$R-}
  63. {$S-}
  64. {$V-}
  65.  
  66. Unit Driver;
  67.  Interface
  68.   Procedure EgaVgaDriver;
  69.  Implementation
  70.   Procedure EgaVgaDriver; External;
  71. {$L egavga.obj}
  72. End.
  73.