hello,
i use the S12ZVLA128 MCU ,and follow the Simple_serial_bootlader example development my bootlader.
the bootloader:



i do not use the eeprom , and wen the MCU power ,i want run the bootloader ,and then the bootloader
will check the app is ready ,if yes it will jump
__DI();
setReg16(IVBR, 0xFE00U);
app_vector = *(unsigned long int *) (0XFFDFFC);
asm LD X,app_vector;
asm JMP (0,X);//jmp app
the app:



now, the bootlader can run ,and i use the multilink-fx loding the app to flash ,and debug the bootlader,
when jum ,i found the No source available for "0x022E00 (0x022E00)() " .then i see de app.sx file ,it show
S903022ECC , it show the start addr is 022E, so i think the jmp is successful,but why it can't run the app?
and i try pull-out the multilink-fx ,the same to no pull-out .can you help ,my friend?
haiyang