HELP? Link Error

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

HELP? Link Error

Jump to solution
914 Views
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!

Labels (1)
1 Solution
603 Views
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

View solution in original post

3 Replies
603 Views
Monica
Senior Contributor III

Yitlilee, did this resolved your problem?

Please let us know!

Thanks! :smileyhappy:

0 Kudos
603 Views
yitlilee
Contributor II

Yes, problem solved. Thanks for Catherine

0 Kudos
604 Views
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