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

Question about listing file.

How I can include in my listing file assembler code of libraries instruction e.g. _putchar. There is only string "ACALL _putchar" inside of file main.lst. In disassembly window I can see this assembler instructions.

Parents
  • How I can include in my listing file assembler code of libraries instruction e.g. _putchar.

    You can't, as long as you're not compiling those library functions yourself. The library, besides being Keil's intellectual property, is generally "no user-serviceable parts inside" territory.

    _putchar and some others are special in that you're encouraged to write your own replacement. If and only if you do that, you'll get a listing.

Reply
  • How I can include in my listing file assembler code of libraries instruction e.g. _putchar.

    You can't, as long as you're not compiling those library functions yourself. The library, besides being Keil's intellectual property, is generally "no user-serviceable parts inside" territory.

    _putchar and some others are special in that you're encouraged to write your own replacement. If and only if you do that, you'll get a listing.

Children