I need to jump from one segment to another example: from 0xC01000 to 0xC10000 How can this be done?
Using which tools? 8051, 251, 166, or ARM? Jon
I use the C166 C-Compiler and a XC164 uC
In C, you can call a function by its absolute address, if that's what you are after:
( ( void (far *)(void) ) 0x123456 ) ();