Hi ,
I have a problem with vector table of msp430f6779. Here is my project:
Now this MCU has a 4 flash banks. My code resides in second flash banks which starts 2C000h and ends 4BFFFh addresses. As you can see this addresses in 20 bit format. So my code has some interrupts too. And interrupt vector table starts FF80h and ends FFFFh addresses. So as you can see this is 16 bit format. So ıf I use and interrupt in my code which resides second bank, my interrupt routine function will be reside first bank.Because of vector table size.
I want to move routine functions to second bank too. How can I do that? How can I implement that?
Best regards..