NEC 78K0 / ISR functions / linkerscript

Hello Using NEC 16 bit 78K0R-KG3  (uPD78F1166) 256kb Flash / 12 kb RAM with IAR EW 4.62 and Minicube2 on WinXP SP3. Note to the NEC 78K0 port: Due to the design of the interrupt system it is required to place all interrupt functions in the range 0x0000 to 0xFFFF.
Building larger systems will require user so force all interrupt functions, including vTaskIncrementTick() and vTaskSwitchContext(), to be placed in this range using a customized linkerscript – or the project fails to link. Example for placing ISR functions in normal application space (NOT using the bootcluster 0/1 area): -Z(CODE)ISR_CODE=02000-0FFFF Add following code before the function declaration: (hash)pragma location=”ISR_CODE” BR,
Jonas, DK

NEC 78K0 / ISR functions / linkerscript

Thanks for the info – all I need to do is update the documentation page! Regards