vectors.asm
来自「结合DSP2407内置AD与外接DAC0832实现带干扰信号的FIR滤波,本程序」· 汇编 代码 · 共 24 行
ASM
24 行
;***********************************************************************
;* 北京达盛科技有限公司
;* 研 发 部
;*
;* http://www.techshine.com
;*
; *文件名称:Vectors.asm
; *文件标示:
; *摘 要:本文件内容为tms320lf2407 dsp的中断向量表
; * 将对应中断的_nothing改成眺转到指定服务子程序的指令
; * 即可以使用此中断
; *************************************************************
.global _c_int0,_nothing
.sect ".vecs"
reset: b _c_int0 ;复位向量
int1: b _nothing ;ADC,SPI,CAN,SCI,EVA,EVB
int2: b _nothing ;EVA,EVB
int3: b _nothing ;EVA,EVB
int4: b _nothing ;EVA,EVB
int5: b _nothing ;SPI,SCI,CAN
int6: b _nothing ;ADC,EXINT
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?