I'm beginner in 8051 programming. Also I would like to know, if (and if yes, how ?) it's possible to make obj-files with the Keil C compiler for using its with an no-Keil assembler.
Thank for having rely so quickly ;-) But... in my office, we have another assembler (intel), and for an application we must use float and trigonometric functions also with Keil C compiler I want doing a obj file with the compute functions for linking them with the other assembler (because this application was already developp with this). Now I hope you understand my problem.
Keil A51 is compatible with Intel ASM-51. You should be able to assemble intel ASM-51 files with Keil A51. If not, you can still link the obj file created by ASM-51. Just add it into the project like you would for any other obj file. In uVision2, when Adding filesto a group, just select the obj file. Jon