home *** CD-ROM | disk | FTP | other *** search
- {***************************************}
- { ATI256 BGI driver unit interface }
- { Thomas Design }
- { August 5, 1989 }
- {***************************************}
-
- unit ATIDET;
- interface
-
- const
- ATI320x200 = 0; { Standard VGA mode 13h }
- ATI640x400 = 1;
- ATI640x480 = 2;
- ATI800x600 = 3;
-
- procedure _ATIDriverProc;
- function _DetectATI256:integer;
-
- implementation
- procedure _ATIDRIVERPROC; external;
- {$L ATI256.OBJ }
- function _DetectATI256; external;
- {$L ATIDET.OBJ }
- end.