mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-14 06:29:46 +00:00
4325cdcc78
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.
40 lines
996 B
Plaintext
40 lines
996 B
Plaintext
;
|
|
; File: dpPackEntry.a
|
|
;
|
|
; Contains: PACK 11 entry - Edition Manager (stolen from MiscPatches.a)
|
|
;
|
|
; Written by: Tim Nichols
|
|
;
|
|
; Copyright: © 1992 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; This file is used in these builds: ROM
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <1> 5/20/92 TN first checked in
|
|
;
|
|
; To Do:
|
|
;
|
|
|
|
LOAD 'StandardEqu.d'
|
|
INCLUDE 'DispatchHelperPriv.a'
|
|
|
|
;___________________________________________________________________________________
|
|
;
|
|
; PACK 11 entry - Edition Manager
|
|
;
|
|
;___________________________________________________________________________________
|
|
|
|
Pack11 PROC EXPORT
|
|
|
|
Pack11Handle EQU App2Packs+12
|
|
Pack11Globals EQU ExpandMemRec.emPack11Globals
|
|
|
|
MOVE.L Pack11Handle,A0 ; A0 = handle to PACK
|
|
MOVE.L ExpandMem, A1 ; A1 = expanded memory area
|
|
ADD.W #Pack11Globals,A1 ; A1 = pointer to PACK use count
|
|
_ProcHelper ; let ProcHelper take over
|
|
|
|
ENDPROC ; Pack11Entry
|
|
|
|
END ; of file |