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

Jumping Flash locations inside a single application

Hi all,

Is there any way to jump some flash locations inside a code.
eg:

Starting location of flash

                                    0x00000050         int main()
                                    0x00000054           {
                                    0x00000058         printf("Hai");
                                    0x0000005C         Jumpt to flash address for 2nd printf
                                 0x00075000     printf("Bye")
                                  ------------          }


How to implement this type of Flash location jumping in Keil compiler.Is it possible to jump??
Kindly reply...

Parents
  • Your question makes about as much sense as: "Is it possible to climb a mountain, wearing scuba gear?"
    Well, it might be, but why the heck would anyone want to?

    Why, in particularly, do you think you want to do that?

    And if you do want to do that, why on earth do you want to do it in a high-level language, one of the biggest purposes of which is to isolate you from such low-level detail?

Reply
  • Your question makes about as much sense as: "Is it possible to climb a mountain, wearing scuba gear?"
    Well, it might be, but why the heck would anyone want to?

    Why, in particularly, do you think you want to do that?

    And if you do want to do that, why on earth do you want to do it in a high-level language, one of the biggest purposes of which is to isolate you from such low-level detail?

Children