emacisr.asm

来自「zilog的实时操作系统RZK,可以移植到多种处理器上」· 汇编 代码 · 共 56 行

ASM
56
字号
;********************************************************************************
; Copyright 2004, ZiLOG Inc.													*
; All Rights Reserved															*
;																				*
; This is UNPUBLISHED PROPRIETARY SOURCE CODE of ZiLOG Inc., and might			*
; contain proprietary, confidential and trade secret information of				*
; ZiLOG, our partners and parties from which this code has been licensed.		*
;																				*
; The contents of this file may not be disclosed to third parties, copied or	*
; duplicated in any form, in whole or in part, without the prior written		*
; permission of ZiLOG Inc.														*
;********************************************************************************

	.include "ez80F91.inc"

;	.sect	".isr"	;Added 24-07-02
	.extern _RZKResumeInterruptThread	
	.extern _emacInterruptThdHdl
	.extern _RZKISRProlog
	.extern _RZKISREpilog
	.extern _F91EmacTask
	.assume	adl=1

	.def	_emacisr
_emacisr:	
	PUSH	AF
	PUSH	BC
	PUSH	DE
	PUSH	HL		; scratch reg for function call from isr
	PUSH	IX
	PUSH	IY

	ld		bc, EMAC_IEN	; Disable the emac interrupts
	xor	a, a
	out	(bc), a

	CALL	_RZKISRProlog

	; Call RZKResumeInterruptThread
	LD HL, (_emacInterruptThdHdl)
	PUSH HL
	CALL _RZKResumeInterruptThread
	POP HL
;	call _F91EmacTask
	CALL	_RZKISREpilog
	POP		IY
	POP     IX
	POP		HL
	POP		DE
	POP		BC
	POP		AF
	EI
	RETI


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?