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
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
View all questions in Keil forum