"Vic" <
[email protected]> a écrit dans le message de news:
</>
Hello
I use conditional assembly and would like to name the objects file
differently.
let me give you an example :
mycode.asm:
----------------
.if Version1
..
.endif
.if Version2
..
.endif
---------------
Now I would like assemble the sourcefile with the following command
asm500 mycode.asm mycodeV1.obj (specifics
option) -dVersion1 -dVersion2=0
or
asm500 mycode.asm mycodeV2.obj (specifics option) -dVersion1=0 -
dVersion2
I'm using two projects (V1 and V2) with specific command line
assembly.
For the linker there is now problem since I can use a different cmd
file.
One solution would be to use a separate .bat file. But I would like to
perform this in CCS environnment.
Thanks