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
  • Why do you want to do this? Keeping track of memory is hard work, which the compiler can do for you. If you do it yourself, you will need to move functions to avoid wasteful gaps or catastrophic overlap. I would think about this REALLY hard, because I've never found a need for it.

Reply
  • Why do you want to do this? Keeping track of memory is hard work, which the compiler can do for you. If you do it yourself, you will need to move functions to avoid wasteful gaps or catastrophic overlap. I would think about this REALLY hard, because I've never found a need for it.

Children