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

Problems with interrupts

Hiya guys, need a bit of help here

I have put this code in

-----------------------------------------
void noreturn (void) interrupt 1
{
send_serial("Timer0 Overflow");

}

------------------------------------------

but the target is not created when this code is in.

what could it be??

Parents
  • I've never used the Keil simulator, but somewhere in the options there should be a way to let it know you want to relocate where the hardware goes for interrupt vectors.

    Is there a place where you select what chip you are simulating? If so, maybe all you have to do is make sure the correct chip (one that has its int vectors at 0xBF00) is selected.

Reply
  • I've never used the Keil simulator, but somewhere in the options there should be a way to let it know you want to relocate where the hardware goes for interrupt vectors.

    Is there a place where you select what chip you are simulating? If so, maybe all you have to do is make sure the correct chip (one that has its int vectors at 0xBF00) is selected.

Children
No data