This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to relocate the application to a different address in c167 while loading using keil

When i load my application on to Kitcon C167CR-LM starter kit, while loading i receive a warning stating " The content at address location 0x000008 will be overwritten by Monitor! Please relocate the application to a different address!". How should i relocate my address? Pls do guide me..

Parents
  • I assume you are in BSL mode and using the monitor? Then you need to reserve the following in your project...

    You need under Options - L166 Misc RESERVE: 8H-0BH, 0ACH-0AFH

    The monitor is using two of the hardware resources of the C167. The NMI (8h) and ASC0 receive interrupt (ACh).

Reply
  • I assume you are in BSL mode and using the monitor? Then you need to reserve the following in your project...

    You need under Options - L166 Misc RESERVE: 8H-0BH, 0ACH-0AFH

    The monitor is using two of the hardware resources of the C167. The NMI (8h) and ASC0 receive interrupt (ACh).

Children