Hello, I'm using C51 V4.01 Keil compiler. When I compile a .C file (with c51.exe), I obtain a .lst file and not a .O51 file. In the .lst file it writes "No object module requested". My question is How can I obtain a .O51 file? What compiler configuration file (if does exists such file) should I change and how to do it? Thank you.
Any particular reason why you're using such an old compiler?!
Did you specify NOOBJECT or NOOJ on the command line or on the first line of the C file. This directive tells the compiler NOT to generate an OBJ file. Jon