Compiling the utilities:

just type make.

==================================================================== 

create a dsp microcode binary file with:

./compile mycode.dsp mycode.bin

Have a look at the *.dsp to see what's possible to do.

TIPS:

All operand arguments of an OP() instruction should
exclusively use the operand functions defined in compiler.c

If you need a non existent function just add it to compiler.c 
and document it a little bit. Also try to implement as much syntax
checking as you can.

You can use common C expressions to do dsp address arithmetic.

=====================================================================

DSP programs loading:

Load a binary dsp microcode file with:

./load mycode.bin

=====================================================================

Register dumping:

Look at the register values with:

./dump offset lenght

offset and lenght in bytes units and decimal notation.
