mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2024-12-28 01:29:20 +00:00
5b0f0cc134
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.
54 lines
1.5 KiB
Plaintext
54 lines
1.5 KiB
Plaintext
;
|
|
; File: ScriptMgrExtHead.a
|
|
;
|
|
; Contains: Header for patch file containing extensions for both ROM and RAM version
|
|
; of Script Manager.
|
|
;
|
|
; Written by: Peter Edberg
|
|
;
|
|
; Copyright: © 1989-1990 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <2> 3/25/90 PKE Updated header to BBS format.
|
|
; <1> 12/18/89 CCH Adding for the first time into BBS. Changed include 'inc.sum.a'
|
|
; to load 'StandardEqu.d'. Updated file name references.
|
|
;
|
|
; (BBS versions above, EASE versions below)
|
|
; <1.0> 9/1/89 PKE Beginning of framework for 'ptch' resource 27, which contains
|
|
; 7.0 extensions for Script Mgr. This file and ScriptMgrExtTail.a
|
|
; replace SMgrExt.a.
|
|
;___________________________________________________________________________________________________
|
|
; To Do:
|
|
;
|
|
;___________________________________________________________________________________________________
|
|
|
|
blanks on
|
|
string asis
|
|
|
|
LOAD 'StandardEqu.d'
|
|
include 'ScriptPriv.a'
|
|
|
|
ptchID equ 27 ; per CCH.
|
|
|
|
; -----------------------------------------------------------------------------
|
|
|
|
CodeEntry Main export
|
|
Import SMgrInstallExt ; start of init code
|
|
|
|
bra.w SMgrInstallExt ; branch to initialization
|
|
dc.b 'ptch' ; resource type
|
|
dc.w ptchID ; resource number
|
|
dc.w smgrVersPriv ; version
|
|
|
|
EndMain
|
|
|
|
; -----------------------------------------------------------------------------
|
|
|
|
; resident code goes after here
|
|
|
|
END
|
|
|
|
|
|
|