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

Defining Address Space for Application

I want to load two different applications into memory. One application will jump to the other. How do you set up the start address in memory and the code size that the compiler will use in generating the application code. Also, is there an easy way to check how much total memory a compiled application will require.

Thanks for any help.

  • "is there an easy way to check how much total memory a compiled application will require."

    when you compile a project,if successful,you will see the infromation in the output window at the bottom of your screen generally.


    compiling mymath.c...
    compiling main.c...
    linking...
    <font color=red>Program Size: data=108.0 xdata=0 code=3880</font>
    creating hex file from "mymath"...
    "mymath" - 0 Error(s), 0 Warning(s).