vectors.asm

来自「dsp下网络通信实验,很有用哦.平台为DSP54」· 汇编 代码 · 共 23 行

ASM
23
字号
; *************************************************************
; *Copyright (c) 2005,北京精仪达盛科技有限公司研发部
; *All rights reserved
; *
; *文件名称:Vectors.asm
; *文件标示:
; *摘    要:本文件内容为tms320lf2407 dsp的中断向量表
; *          将对应中断的_nothing改成眺转到指定服务子程序的指令
; *          即可以使用此中断  
; *        
; ************************************************************* 

               .global           _c_int0,_nothing,_NIC_ISR
               .sect             ".vecs"
reset:         b                _c_int0                    ;复位向量
int1:          b                _NIC_ISR                   ;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 + -
显示快捷键?