This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

branch to absolute address

I wrote a piece of code running in 8051 microcontroller. The code is to write another piece of code to memory starting from, say, 0x1234. After this is done, it will jump to address 0x1234 to execute the code there. In assembly, just ljmp 0x1234
But how to do this in C51?