mirror of
https://github.com/elliotnunn/supermario.git
synced 2024-11-22 04:31:30 +00:00
41 lines
989 B
Plaintext
41 lines
989 B
Plaintext
;
|
|
; File: PPCBrowserPackEntry.a
|
|
;
|
|
; Contains: PACK 9 entry - PPC Browser (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 9 entry - PPC Browser
|
|
;
|
|
;___________________________________________________________________________________
|
|
|
|
Pack9 PROC EXPORT
|
|
|
|
Pack09Handle EQU App2Packs+4
|
|
Pack09Globals EQU ExpandMemRec.emPack9Globals
|
|
|
|
MOVE.L Pack09Handle,A0 ; A0 = handle to PACK
|
|
MOVE.L ExpandMem, A1 ; A1 = expanded memory area
|
|
ADD.W #Pack09Globals,A1 ; A1 = pointer to PACK use count
|
|
_ProcHelper ; let ProcHelper take over
|
|
|
|
ENDPROC ; Pack09Entry
|
|
|
|
END ; file
|