Hi Guru ;D
Can Watcom C/C++ 1.0 and Borland C++ 5.0 produce assembly code.
How to do this in command line?
Please help!!!
Assembly code from watcom and borland
Re:Assembly code from watcom and borland
I'm not sure about Watcom's compilers, but Borland's should have the capability. Use the flag -S when you compile. Ie:
bcc -S myprog.c
If that gives you an error, then type bcc -h and find the entry which says "Compile to assembly" or something along those lines. Watcom's will probably be similar, if they support compilation to assembly.
bcc -S myprog.c
If that gives you an error, then type bcc -h and find the entry which says "Compile to assembly" or something along those lines. Watcom's will probably be similar, if they support compilation to assembly.