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
  • The compilation message:
    "Program Size: Code=41364 RO-data=2672 RW-data=96 ZI-data=172384"
    should do it
    The compiler will only know about the compile time allocations (global, static and stack objects) any allocation using malloc or new its up to you.
    Regards

Reply
  • The compilation message:
    "Program Size: Code=41364 RO-data=2672 RW-data=96 ZI-data=172384"
    should do it
    The compiler will only know about the compile time allocations (global, static and stack objects) any allocation using malloc or new its up to you.
    Regards

Children
No data