mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-01 11:29:27 +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.
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: © 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
|
|
|