Question
ROP and bootloader
Posted on June 27, 2012 at 18:20
Hi,
Does anybody knows how to jump properly to Bootloader entry point at adress 0x602D?I 've tried :#define BOOTLOADER_ADDR 0x602Dultypedef void (*TFunction)(void);void JumpToBootLoader(void){const TFunction MainUserApplication = (TFunction)BOOTLOADER_ADDR ;TFunction GoAddress;GoAddress();}but it does not seems to go the entry point.Many thanks,jfelix