mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2024-12-28 16:31:01 +00:00
0ba83392d4
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.
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
;
|
|
; File: ExpansionMgr.a
|
|
;
|
|
; Contains: Expansion Manager Assembly Sources
|
|
;
|
|
; Written by: Al Kossow
|
|
;
|
|
; Copyright: Š 1993 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <1> 11/11/93 fau first checked in
|
|
; <1> 10/30/93 aek Created
|
|
;
|
|
|
|
LOAD 'StandardEqu.d'
|
|
INCLUDE 'LinkedPatchMacros.a'
|
|
INCLUDE 'ExpansionBus.a'
|
|
|
|
;
|
|
; Dispatcher for the Expansion Manager routines
|
|
;
|
|
|
|
CASE OFF
|
|
ROMs SuperMario
|
|
|
|
ExpansionBusDispatch BeginDispatcher _ExpansionBusDispatch
|
|
DispatchSelectors ExpIntInstall = selectExpIntInstall
|
|
DispatchSelectors ExpIntRemove = selectExpIntRemove
|
|
DispatchSelectors ExpVInstall = selectExpVInstall
|
|
DispatchSelectors ExpVRemove = selectExpVRemove
|
|
DispatchSelectors DevTreeRoot = selectDevTreeRoot
|
|
DispatchSelectors DevTreeNodeInfo = selectDevTreeNodeInfo
|
|
DispatchSelectors DevTreeAddNode = selectDevTreeAddNode
|
|
DispatchSelectors DevTreeDelNode = selectDevTreeDelNode
|
|
DispatchSelectors DevTreeSetProperty = selectDevTreeSetProperty
|
|
DispatchSelectors DevTreeGetProperty = selectDevTreeGetProperty
|
|
EndDispatcher
|
|
|
|
CASE OBJECT
|
|
|
|
;---------------------------------------------------------------------------
|
|
;
|
|
;
|
|
END
|