While I'm doing mixed programming of C and ASM, a serious problem occurs.
My asm. program must use some external function name or variable name defined in C file which is identical with the MASM keywords, like "ADD, SUB, GT, ...". What should I do? Help me! thanks a lot!
Hi,
Not much of a C programmer but as I understand it an underscore is prefixed to all externals in C so ADD would actually be addressed as _ADD which is not a conflict with MASM keywords. I may be corrected on this but that is what I have been lead to believe.
Donkey