boot3/OS/Gestalt/GestaltPatchHead.a
Elliot Nunn 5b0f0cc134 Bring in CubeE sources
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.
2017-12-26 10:02:57 +08:00

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