mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-23 01:30:17 +00:00
39 lines
854 B
Plaintext
39 lines
854 B
Plaintext
|
;
|
|||
|
; File: GestaltPatchHead.a
|
|||
|
;
|
|||
|
; Contains: This file is part of the 'ptch' resource which loads Gestalt into
|
|||
|
; machines that do not contain it in ROM.
|
|||
|
;
|
|||
|
; Written by: Carl C. Hewitt
|
|||
|
;
|
|||
|
; Copyright: <09> 1989,1991 by Apple Computer, Inc., all rights reserved.
|
|||
|
;
|
|||
|
; Change History (most recent first):
|
|||
|
;
|
|||
|
; <2> 9/10/91 JSM Add a header.
|
|||
|
; <1.0> 2/21/89 CCH Adding to EASE for the first time.
|
|||
|
;
|
|||
|
|
|||
|
CASE OBJ
|
|||
|
STRING ASIS
|
|||
|
|
|||
|
ptchID Equ 5 ; <=== Whatever this resource ID is
|
|||
|
ptchVersion Equ 1 ; <=== Whatever the version number is
|
|||
|
|
|||
|
; ***************************************************************************
|
|||
|
Start Main Export
|
|||
|
Import BootInit
|
|||
|
|
|||
|
Bra BootInit
|
|||
|
|
|||
|
String AsIs
|
|||
|
DC.B 'ptch'
|
|||
|
DC.W ptchID
|
|||
|
DC.W ptchVersion
|
|||
|
|
|||
|
EndMain
|
|||
|
|
|||
|
; ***************************************************************************
|
|||
|
END
|
|||
|
|