Hello,
Fabio Pereira has an example for an ILAD reset on his page.
Look at the Code for chapter 5.
It should be easy to adapt it to ILOP.
The reset function is implemented als follows :
void reset(void)
{
unsigned int temp = 0x9E00;
__asm
{
LDHX @temp // load the address of temp into H:X
JMP ,X // jump to the address pointer to by H:X
}
}
Eckhard