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

hi,
i have a simple question. be glad if anyone can help me. how do i check how much memory have i used for the lines of coding that ive written? thanks in advance
wafi

Parents
  • The .lst file is produced by the compiler for each module. It shows module size and optionally assembler code for every function. This is not quite the final form of the code, since the Keil linker can do significant optimizations.

    The .cod file is produced by the linker, and shows the program after linker optimizations.

Reply
  • The .lst file is produced by the compiler for each module. It shows module size and optionally assembler code for every function. This is not quite the final form of the code, since the Keil linker can do significant optimizations.

    The .cod file is produced by the linker, and shows the program after linker optimizations.

Children