mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-19 21:30:04 +00:00
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
|
;
|
|||
|
; File: PPCPatch.a
|
|||
|
;
|
|||
|
; Contains: PPCToolbox linked patch.
|
|||
|
;
|
|||
|
; Written by: C. Victor Chang, Sangam, and Jeff Miller
|
|||
|
;
|
|||
|
; Copyright: <09> 1990-1992 by Apple Computer, Inc., all rights reserved.
|
|||
|
;
|
|||
|
; Change History (most recent first):
|
|||
|
;
|
|||
|
; <5> 6/9/92 JSM Factor out code that is common to both the ROM and the System by
|
|||
|
; moving everything except MakePatch to PPCInstall.a.
|
|||
|
; <4> 9/29/91 DTY Conditionalize <3> out of CubeE.
|
|||
|
; <3> 6/10/91 EMT Optimize code for size
|
|||
|
; <2> 10/24/90 EMT Add new procedure RemovePPC
|
|||
|
; <1> 6/12/90 JSM First checked in.
|
|||
|
;
|
|||
|
|
|||
|
LOAD 'StandardEqu.d'
|
|||
|
INCLUDE 'LinkedPatchMacros.a'
|
|||
|
|
|||
|
CASE OBJ
|
|||
|
STRING ASIS
|
|||
|
|
|||
|
;
|
|||
|
; The PPCToolbox is installed on all ROM families
|
|||
|
;
|
|||
|
ROMs Plus,SE,II,Portable,IIci
|
|||
|
|
|||
|
;===============================================================================
|
|||
|
;
|
|||
|
; Install ppcDispatcher as the PPC trap. Link this in after PPCInstall.a so
|
|||
|
; this will happen after PPC<50>s InstallProc is executed, although this isn<73>t
|
|||
|
; strictly necessary.
|
|||
|
;
|
|||
|
;===============================================================================
|
|||
|
|
|||
|
IMPORT ppcDispatcher
|
|||
|
MakePatch ppcDispatcher,$A0DD
|
|||
|
|
|||
|
END
|