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

hi

hi i want to assigne my own address to every function i write, i mean each function has to start in the code memory where i select. i want to store the function in order, in which i want to, so can i do it? and if so how can?

Parents
  • As Oliver says, you need a really, really, really good reason to do this!

    So, if you are absolutely certain that this is the only way to go, you are going to have to study the Linker manual very thoroughly - as the Linker is the tool to do this.

    Note: to manually assign addresses to every single function, will require each function will have to be in its own separate source file...

Reply
  • As Oliver says, you need a really, really, really good reason to do this!

    So, if you are absolutely certain that this is the only way to go, you are going to have to study the Linker manual very thoroughly - as the Linker is the tool to do this.

    Note: to manually assign addresses to every single function, will require each function will have to be in its own separate source file...

Children