Sign in

username:

password:



Not a member?

Search compdsp



Search tips

comp.dsp by Keywords

Adaptive Filter | ADPCM | ADSP | ADSP-2181 | Aliasing | AMR | Anti-Aliasing | ARMA | Autocorrelation | AutoCovariance | Beamforming | Bessel | Blackfin | Butterworth | C6713 | CCS | Chebyshev | CIC Filter | Circular Convolution | Code Composer Studio | Comb Filter | Compression | Convolution | Cross Correlation | DCT | Decimation | Deconvolution | Demodulation | DM642 | DSP Boards | DSP/BIOS | DTMF | Echo Cancellation | Equalization | Equalizer | ETSI | EZLITE (Ez-kit Lite) | FFT | FFTW | FIR Filter | Fixed Point | FSK | G.711 | G.723 | G.729 | Gaussian Noise | Goertzel | GPIO | Hilbert Transform | IFFT | IIR Filter | Interpolation | Invariance | JTAG | Kalman | Laplace Transform | Levinson | LPC | McBSP | MIPS | Modulation | MPEG | Multirate | Notch Filter | Nyquist | OFDM | Oversampling | Pink Noise | Pitch | PLL | Polyphase | QAM | QDMA | Quantization | Quantizer | Radar | Random Noise | Reed Solomon | Remez | Resampling | RTDX | Sampling | Sharc | TI C6711 | Undersampling | Viterbi | Wavelets | White Noise | Wiener Filter | Windowing | XDS510PP | Z Transform

Sponsor

Industry's highest performing at the lowest power DSPs now as low as $5.00*
Start development today!
*volume pricing for 10ku

Discussion Groups

Free Online Books

See Also

Embedded SystemsFPGAElectronics

Discussion Groups | Comp.DSP | [CCS] assembler command line

There are 3 messages in this thread.

You are currently looking at messages 0 to 3.


[CCS] assembler command line - Curl - 2004-02-17 12:09:00

Hello All
This may not be the right place for CCS question. But I know I could
find an answer here ! :o)

Does anyone know how to modify the assembler command line in CCS
? -(not only the options)-
I would like to supply the "object files" in the command line.

Or in another way :
How to include a (batch?) file invoking the assembler (asm500) with
the correct arguments in my project ?.
I try to play with GEL Files. But I did not succeed.

Thank you.

______________________________
New DSP Code Snippets Section now Live.   Learn more about the reward program for contributors here.

Re: [CCS] assembler command line - Vic - 2004-02-18 03:11:00



Hello,
you may click 'Project-Build Options-Compiler' to see cmd line for
asm500.
 It may be to correct as by ComboBoxes (and others), as direct.
> Does anyone know how to modify the assembler command line in CCS
> ? -(not only the options)-
> I would like to supply the "object files" in the command line.

 I can't clear understand that is bad in standart way: you only point
to files(.asm,.c,.cmd,.obj...) which must be included in
project(executable file), all another do CCS.
> How to include a (batch?) file invoking the assembler (asm500) with
> the correct arguments in my project ?.
 
Cheers
______________________________
New DSP Code Snippets Section now Live.   Learn more about the reward program for contributors here.

Re: [CCS] assembler command line - Curl - 2004-02-18 03:30:00

"Vic" <h...@yahoo.com> 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

______________________________
New DSP Code Snippets Section now Live.   Learn more about the reward program for contributors here.