tx8_1int.asm

来自「A very good POCSAG Paging Protocol Decod」· 汇编 代码 · 共 55 行

ASM
55
字号
;------------------------------------------------------------------------------
;  FILENAME:   TX8_1int.asm
;   VERSION:   Rev B, 2002 Mar 30
;------------------------------------------------------------------------------
;  DESCRIPTION:
;     Interrupt handler routine for TX8 user module instance:
;        TX8_1.
;------------------------------------------------------------------------------
;	Copyright (c) Cypress MicroSystems 2000-2002.  All Rights Reserved.
;------------------------------------------------------------------------------

include  "TX8_1.inc"

area text (ROM, REL)

;-----------------------------------------------------
;  Export interrupt handler
;     NOTE that interrupt handler is NOT exported
;     for access by C function.  Interrupt handlers
;     are not callable by C functions.
;-----------------------------------------------------
export   TX8_1INT

;-----------------------------------------------------------------------------
;  FUNCTION NAME: TX8_1Int
;
;  DESCRIPTION:
;     TX8 interrupt handler for instance TX8_1.  
;
;     This is a place holder function.  If the user requires use of an interrupt
;     handler for this function, then place code where specified.
;
;  ARGUMENTS:
;     none.
;
;  RETURNS:
;     none.
;
;  SIDE EFFECTS:
;     none.
;
;  THEORY of OPERATION:  
;     none.
;
;-----------------------------------------------------------------------------
TX8_1INT:
   ;--------------------------
   ; Place user code here!!!
   ;--------------------------
   reti
	

; end of file
	

⌨️ 快捷键说明

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