[quote user="FAB63476"] 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, .... }; [/quote] But the ARM hardware has its reset vector at the low end of addresses and other interrupt vectors at higher and higher addresses. While MSP430 hardware has its reset vector at the higher end of addresses. So what comes naturally for ARM may be awkward for MSP430.
↧