home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / grafik / ibm8514 / read.me < prev   
Encoding:
Text File  |  1993-11-30  |  1.6 KB  |  64 lines

  1. These IBM8514A compatible drivers are fully functional and write directly
  2. to the graphics accelerator hardware.  They do not use the Adapter Interface 
  3. (AI) TSR.  
  4.  
  5. Driver Name             Display
  6. -----------             --------
  7. IBM_1.BGI               IBM8514A 640x480 256 color
  8. IBM_2.BGI               IBM8514A 1024x768 256 color
  9.  
  10. Initialization (Turbo C):
  11. -------------------------
  12. int huge detect_driver( void)
  13. {
  14.   return(0); /* graphics mode */
  15. }
  16.  
  17. void Initialize(void)
  18. {
  19.   int    GraphDriver,GraphMode;
  20.   GraphDriver = installuserdriver("IBM_1", detect_driver);
  21.   GraphDriver = DETECT;
  22.   initgraph( &GraphDriver, &GraphMode, "" );
  23. }
  24.  
  25. Initialization (Turbo Pascal):
  26. ------------------------------
  27.   {$F+}
  28.   function DetectVideo: Integer;
  29.   begin
  30.      DetectVideo := 0;
  31.   end
  32.   {$F-}
  33.  
  34.   Driver := InstallUserDriver('IBM_2', @DetectVideo);
  35.   Driver := Detect;
  36.   InitGraph(Driver,Mode,' ');
  37.  
  38. If you wish to become a registered user, then please send
  39. $15.00 check or money order to:
  40.  
  41.         Steve Auger
  42.         53 James Lewis Ave.,
  43.         Stittsville, Ont.
  44.         Canada
  45.         K2S 1K3
  46.  
  47. Registered users will receive technical support via compuserve or
  48. phone and be notified of improved drivers / new products.
  49.  
  50. If you do not wish to become a registered user, then please delete
  51. this software from your system.
  52.  
  53. Distribution or sale of these drivers without prior written authorization
  54. from the author is an illegal act.  The author shall not be liable for any
  55. damage, direct or indirect, resulting from the use or inability to use
  56. these drivers.
  57.  
  58. For further questions, contact Steve Auger:
  59.  
  60.   on Compuserve [71773,1437]
  61.   by phone (613)836-7303
  62.  
  63.  
  64.