This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

asm文件怎么加入到CCS工程中?

Other Parts Discussed in Thread: TMS320C6722B

我找了一个中断的向量表asm文件,已经放到工程中啦,可是程序中还是一直在报错啊,感觉好像没有连接上,请问怎么将asm文件链接到CCS里啊?

这是asm文件:

;**********************************************************
; Global Symbols
;**********************************************************
.global _intcVectorTable
.global _c_int00
.global _DMAX_TranComplete_Interrupt

;**********************************************************
; Interrupt Fetch Packet
;**********************************************************
VEC_ENTRY .macro addr
STW B0,*--B15
MVKL addr,B0
MVKH addr,B0
B B0
LDW *B15++,B0
NOP 2
NOP
NOP
.endm

;**********************************************************
; Interrupt Vector Table
;**********************************************************
.align 1024
_intcVectorTable:
VEC_ENTRY _c_int00
VEC_ENTRY _DmaxintFetchPacket

我也不知道这个asm对不对,其中DMAX_TranComplete_Interrupt是中断处理函数;请诸位指教