mac-rom/Toolbox/ExpansionBusMgr/ExpansionBusMgr.a
Elliot Nunn 4325cdcc78 Bring in CubeE sources
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.
2017-12-26 09:52:23 +08:00

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