HELP? Link Error

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

HELP? Link Error

跳至解决方案
1,729 次查看
yitlilee
Contributor II

Need help here. I am new to CodeWarrior, I am facing

Link Error: L1119: Vector Allocated at absolute address 0x3FFD overlaps with sections placed in segment, absSeg176.

I am using c programming and MC9RS08KB4CWJ. Please help, thanks!

标签 (1)
标记 (3)
1 解答
1,418 次查看
CrasyCat
Specialist III

Hello

It looks like you have defined a interrupt function with interrupt <vector_num> somewhere in your application and you have also define an interrupt vector table.

The two definition are overlapping.

Please open your .map file in an editor window and check what is allocated at address 0x3FFD.

In order to remove the message remove the vector number next to the interrupt keyword.

CrasyCat

在原帖中查看解决方案

3 回复数
1,418 次查看
Monica
Senior Contributor III

Yitlilee, did this resolved your problem?

Please let us know!

Thanks! :smileyhappy:

0 项奖励
回复
1,418 次查看
yitlilee
Contributor II

Yes, problem solved. Thanks for Catherine

0 项奖励
回复
1,419 次查看
CrasyCat
Specialist III

Hello

It looks like you have defined a interrupt function with interrupt <vector_num> somewhere in your application and you have also define an interrupt vector table.

The two definition are overlapping.

Please open your .map file in an editor window and check what is allocated at address 0x3FFD.

In order to remove the message remove the vector number next to the interrupt keyword.

CrasyCat