mirror of
https://github.com/elliotnunn/supermario.git
synced 2024-11-22 04:31:30 +00:00
39 lines
855 B
Plaintext
39 lines
855 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
|
|
|