mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-04 01:29:22 +00:00
0ba83392d4
Resource forks are included only for .rsrc files. These are DeRezzed into their data fork. 'ckid' resources, from the Projector VCS, are not included. The Tools directory, containing mostly junk, is also excluded.
85 lines
2.0 KiB
Plaintext
85 lines
2.0 KiB
Plaintext
;
|
|
; File: ATIHdr.a
|
|
;
|
|
; Contains: xxx put contents here xxx
|
|
;
|
|
; Written by: xxx put writers here xxx
|
|
;
|
|
; Copyright: © 1993 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <1> 11/5/93 fau first checked in
|
|
; <1> 10/27/93 fau first checked in
|
|
; <1> 10/19/93 fau first checked in
|
|
;
|
|
;
|
|
|
|
;--------------------------------------------------------------------------
|
|
;start
|
|
;
|
|
;Name: ATIHdr.a
|
|
;Creator: George D. Wilson Jr.
|
|
;Date: 4/24/92
|
|
;
|
|
;Purpose: Common equates and defines for ATI driver.
|
|
;
|
|
;Category: Driver Header include file
|
|
;File: ATIHdr.a
|
|
;
|
|
;Detailed: This assembly include file contains common equates for
|
|
; the version information of the ATI video driver
|
|
; and PrimaryInit.
|
|
;
|
|
;History:
|
|
;
|
|
; Date Programmer Modification
|
|
; -------- ---------- -----------------------------------------
|
|
;
|
|
;stop
|
|
;------------------------------------------------------------------------*/
|
|
|
|
|
|
kOurSlotNum EQU $E ;; The slot of the Nub Card
|
|
|
|
; -------------------------------------------------------------------
|
|
; +++++++++++++++++++++++ Version Control Constants +++++++++++++++++
|
|
; -------------------------------------------------------------------
|
|
|
|
gbla &numericVersion ; Numeric Version Number
|
|
&numericVersion seta $1000
|
|
|
|
gblc &textVersion ; Textual Version Number
|
|
&textVersion setc '1.0D1x1'
|
|
|
|
gblc &driverName
|
|
&driverName setc 'Display_Video_Apple_ATI' ; Driver name
|
|
|
|
; -------------------------------------------------------------------
|
|
; Macros for Accessing Version and Name Constants
|
|
; -------------------------------------------------------------------
|
|
MACRO
|
|
_DCB_RevLevel
|
|
gblc &textVersion
|
|
DC.B '&textVersion'
|
|
ENDM
|
|
|
|
MACRO
|
|
_DCB_DriverNameATI
|
|
gblc &driverName
|
|
DC.B '.&driverName'
|
|
ENDM
|
|
|
|
MACRO
|
|
_DCW_Version
|
|
gbla &numericVersion
|
|
DC.W &numericVersion
|
|
ENDM
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
;
|
|
; End of Module
|
|
;
|
|
;------------------------------------------------------------------------*/
|