If you start the assembler from within a Command Prompt window with arguments (such as options or output files) it should operate in the batch mode and the GUI window should not appear. Example:
C:\Program Files\Freescale\CodeWarrior for Microcontrollers Vx\MCU_x.x\prog\ahc08.exe a.s > asm_output.o.
(Sorry, trying to recall things from a leaky memory here.)
The command line process is going to take off once the assembler launches, so if you need batch commands to execute in precise sequential order, you'll need to use start /wait pairs to ensure that the command line process waits until the assembler completes. Example:
start /wait C:\Program Files\Freescale\CodeWarrior for Microcontrollers Vx\MCU_x.x\prog\ahc08.exe a.s > asm_output.o.
---Tom
Message Edited by J2MEJediMaster on 2009-12-10 08:32 AM
Message Edited by J2MEJediMaster on 2009-12-10 08:35 AM