Hi!
I just wondering if it is possible for define all the irq handlers array in c and placing it at the reset vector address:
something like is defined for arm.
void (* const g_pfnVectors[])(void) = {
reset_handler,
other_irq_handler,
dummy_handler,
....
};