sys7.1-doc-wip/OS/SCSIMgr4pt3/SIMCore.a
2019-07-27 22:37:48 +08:00

43 lines
1.6 KiB
Plaintext

;—————————————————————————————————————————————————————————————————————————
;
; File: SIMCore.a
;
; Contains:
;
; Written by: Paul Wolf
;
; Copyright: © 1990-1993 by Apple Computer, Inc., all rights reserved.
;
; Change History (most recent first):
;
; <1> 10/14/93 pdw first checked in
;—————————————————————————————————————————————————————————————————————————
MACHINE MC68020 ; '020-level
BLANKS ON ; assembler accepts spaces & tabs in operand field
PRINT OFF ; do not send subsequent lines to the listing file
; don't print includes
INCLUDE 'Debug.a' ; for NAME macro
INCLUDE 'ACAM.a'
INCLUDE 'SIMCoreEqu.a'
INCLUDE 'HALc96equ.a'
;———————————————————————————————————————————————————————————————————————
SIM_ISR PROC EXPORT
;———————————————————————————————————————————————————————————————————————
move.l 4(sp), A0 ; get SIMg
move.l SIMglobals.HALinfo.HALstaticPtr(A0), 4(sp) ; make parm HALg
jmp ([SIMglobals.HALinfo.HAL_ISR, A0]) ; call (jmp to) HAL_ISR
RTSNAME 'SIM_ISR'
ENDPROC
END