📄 tempcyclesint.asm
字号:
;;*****************************************************************************
;;*****************************************************************************
;; FILENAME: TempCyclesINT.asm
;; Version: 2.2, Updated on 2003/11/10 at 16:39:12
;; Generated by PSoC Designer ver 4.1 b931 : 21 January, 2004
;;
;; DESCRIPTION: PWM8 Interrupt Service Routine
;;-----------------------------------------------------------------------------
;; Copyright (c) Cypress MicroSystems 2000-2003. All Rights Reserved.
;;*****************************************************************************
;;*****************************************************************************
include "m8c.inc"
include "TempCycles.inc"
;-----------------------------------------------
; Global Symbols
;-----------------------------------------------
export _TempCycles_ISR
AREA bss (RAM,REL)
;@PSoC_UserCode_INIT@ (Do not change this line.)
;---------------------------------------------------
; Insert your custom declarations below this banner
;---------------------------------------------------
;include "TempHigh.inc"
;include "TempLow.inc"
;------------------------
; Constant Definitions
;------------------------
;------------------------
; Variable Allocation
;------------------------
;---------------------------------------------------
; Insert your custom declarations above this banner
;---------------------------------------------------
;@PSoC_UserCode_END@ (Do not change this line.)
AREA UserModules (ROM, REL)
;-----------------------------------------------------------------------------
; FUNCTION NAME: _TempCycles_ISR
;
; DESCRIPTION: Unless modified, this implements only a null handler stub.
;
;-----------------------------------------------------------------------------
;
_TempCycles_ISR:
;@PSoC_UserCode_BODY@ (Do not change this line.)
;---------------------------------------------------
; Insert your custom code below this banner
;---------------------------------------------------
; NOTE: interrupt service routines must preserve
; the values of the A and X CPU registers.
; save A
push a
; jump to C code which will handle pop A and reti
ljmp _TemperatureCycle_ISR
;---------------------------------------------------
; Insert your custom code above this banner
;---------------------------------------------------
;@PSoC_UserCode_END@ (Do not change this line.)
reti
; end of file TempCyclesINT.asm
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -