Hi,
When an application is build 2 operations are done (this is true for all architectures):
- compile all source files and generate object files,
- merge all objects in 1 executable file (debug and Srecord files are generated) according to the linker parameter file.
For HC08 and HC12 the linker parameter file is named prm file and uses prm as extension for instance "test.prm".
This file should be located under your project.
I recommend to perform a search with "*.prm".
In all case this file should be listed somewhere in your project too via the project IDE.
If you've a linker error L1119, it means the same address is used 2 times in your application.
Most of the time the default project includes vector table and all peripheral definitions.
If the objects are defined a second time, the linker generates this type of error.
Have a great day,
Pascal
Freescale Technical Support
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------