📄 tx_232int.asm
字号:
;------------------------------------------------------------------------------
; FILENAME: Tx_232int.asm
; VERSION: Rev B, 2002 May 24
;------------------------------------------------------------------------------
; DESCRIPTION:
; Interrupt handler routine for TX8 user module instance:
; Tx_232.
;------------------------------------------------------------------------------
; Copyright (c) Cypress MicroSystems 2000-2002. All Rights Reserved.
;------------------------------------------------------------------------------
include "Tx_232.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 Tx_232INT
;-----------------------------------------------------------------------------
; FUNCTION NAME: Tx_232Int
;
; DESCRIPTION:
; TX8 interrupt handler for instance Tx_232.
;
; 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.
;
;-----------------------------------------------------------------------------
Tx_232INT:
;--------------------------
; Place user code here!!!
;--------------------------
reti
; end of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -