home *** CD-ROM | disk | FTP | other *** search
- These IBM8514A compatible drivers are fully functional and write directly
- to the graphics accelerator hardware. They do not use the Adapter Interface
- (AI) TSR.
-
- Driver Name Display
- ----------- --------
- IBM_1.BGI IBM8514A 640x480 256 color
- IBM_2.BGI IBM8514A 1024x768 256 color
-
- Initialization (Turbo C):
- -------------------------
- int huge detect_driver( void)
- {
- return(0); /* graphics mode */
- }
-
- void Initialize(void)
- {
- int GraphDriver,GraphMode;
- GraphDriver = installuserdriver("IBM_1", detect_driver);
- GraphDriver = DETECT;
- initgraph( &GraphDriver, &GraphMode, "" );
- }
-
- Initialization (Turbo Pascal):
- ------------------------------
- {$F+}
- function DetectVideo: Integer;
- begin
- DetectVideo := 0;
- end
- {$F-}
-
- Driver := InstallUserDriver('IBM_2', @DetectVideo);
- Driver := Detect;
- InitGraph(Driver,Mode,' ');
-
- If you wish to become a registered user, then please send
- $15.00 check or money order to:
-
- Steve Auger
- 53 James Lewis Ave.,
- Stittsville, Ont.
- Canada
- K2S 1K3
-
- Registered users will receive technical support via compuserve or
- phone and be notified of improved drivers / new products.
-
- If you do not wish to become a registered user, then please delete
- this software from your system.
-
- Distribution or sale of these drivers without prior written authorization
- from the author is an illegal act. The author shall not be liable for any
- damage, direct or indirect, resulting from the use or inability to use
- these drivers.
-
- For further questions, contact Steve Auger:
-
- on Compuserve [71773,1437]
- by phone (613)836-7303
-
-
-