counter8_2int.asm

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

ASM
52
字号
;------------------------------------------------------------------------------
;  FILENAME:   Counter8_2int.asm
;   VERSION:   REV B, 2002 Mar 30
;------------------------------------------------------------------------------
;  DESCRIPTION:
;     Interrupt handler routine for Counter8 user module instance:
;        Counter8_2.
;------------------------------------------------------------------------------
;	Copyright (c) Cypress MicroSystems 2000-2002.  All Rights Reserved.
;------------------------------------------------------------------------------

include  "Counter8_2.inc"

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

;-----------------------------------------------------------------------------
;  FUNCTION NAME: Counter8_2Int
;
;  DESCRIPTION:
;     Counter8 interrupt handler for instance Counter8_2.  
;
;     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.
;
;-----------------------------------------------------------------------------
Counter8_2INT:
   ;--------------------------
   ; Place user code here!!!
   ;--------------------------
   reti
	

; end of file

⌨️ 快捷键说明

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