Address allocation
boot:0x5c00-0x6bff
xcl file of the boot:
-Z(CODE)INTVEC=0xFF80-0xFFFF
-Z(CODE)RESET=0xFFFE-0xFFFF
app:0x6c00-0xfcff 0x10000-0x15672
xcl file of the app:
-Z(CODE)INTVEC=0x15F80-0x15FFF
-Z(CODE)RESET=0x15FFE-0x15FFF
I want to jump to the app from the boot,and try to use the mov command -----asm("mov &0x15FFE,PC;"); , but compile error.
the error information is:
Error[Og006]: Error in inline assembly: "Error[433]: Address out of range. Valid range is 0 to 65535 (0xFFFF)."
so how to jump to the address 0x15ffe in the boot code?
thanks!