We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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.
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.
Thank you mr. Broeker. Best regards, Andrey.