此帖出自模拟与混合信号论坛
最新回复
中断向量好像和CMD文件无关吧。CMD文件只分配地址空间。
定义中断向量,应该在中断向量表(就是那个vectors.asm文件)中,把你程序中的中断服务程序入口地址赋给相应的中断向量就行了。
比如程序中,T1中断服务程序是T1_INT(),那么你的vectors.asm就这么来写:
.title \"vectors.asm\"
.ref _c_int0,_nothing,_T1_INT
.sect \".vectors\"
reset: b _c_int0
int1: b _nothing
int2: b _T1_INT
int3: b _nothing
int4: b _nothing
int5: b _nothing
int6: b _nothing
这样当T1发生中断时(T1中断属于int2中断组),就会找到TI_INT()了。
详情
回复
发表于 2008-4-3 06:26
| ||
|
||
| |
|
|
此帖出自模拟与混合信号论坛
| ||
|
||
EEWorld Datasheet 技术支持