HELP? Link Error

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 
1,740件の閲覧回数
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,429件の閲覧回数
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,429件の閲覧回数
Monica
Senior Contributor III

Yitlilee, did this resolved your problem?

Please let us know!

Thanks! :smileyhappy:

0 件の賞賛
返信
1,429件の閲覧回数
yitlilee
Contributor II

Yes, problem solved. Thanks for Catherine

0 件の賞賛
返信
1,430件の閲覧回数
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