mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-28 16:33:33 +00:00
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: <09> 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
|