Changing from Studio 6.2 to Studio 7 ( Windows 7 64 bit )
Whilst using Studio 7, the reset vector opcodes codes are :
0000000 5C C0 RJMP PC+0x005D
But when compiled with Studio 6.2
0000000 55 C0 RJMP PC+0x0056
Both compiled programs work ok, but there is a bootloader which expects to see the 0x55 at address 00000 as generated by AS6.2
CPU is AVR XMEGA32E5
Why would I get different reset vectors? It would seem that the C Startup code needs a different start address, but why would it do this?
Do AS6 and AS7 use different compilers? Both are set to usi AVR GNU Tools, and I assume they are a common toolset in my system for both Studio versions.
Any information / help appreciated.
Ideally I would like Studio 7 to generate the same opcode jump.