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

Memory used by the program

How does one determine the amount of memory is used by the program?

I went to MAP file but couldn't find the required information as shown here -> http://www.keil.com/support/docs/2048.htm

Parents
  • Try reviewing documentation for the ARM architecture rather than stuff describing everything else.

    The .MAP should describe the RAM and ROM addresses being used, and also provide you with details to calculate how large the image in ROM becomes once it describes the static data it fills RAM with when it starts.

    Review Load Regions, and Linker Scatter Files

Reply
  • Try reviewing documentation for the ARM architecture rather than stuff describing everything else.

    The .MAP should describe the RAM and ROM addresses being used, and also provide you with details to calculate how large the image in ROM becomes once it describes the static data it fills RAM with when it starts.

    Review Load Regions, and Linker Scatter Files

Children