Hello Jay
Getting this file to assemble with CodeWarrior should be quite easy. You need to do four things:
(1) Add this as the first line:
.option processor=mcf5485
(2) Comment out the following line:
;;; .name "dsp32.s"
(3) Change the lines which use EQU to use .equ instead (note the leading '.'), e.g:
CACR .equ $002
(4) For lines which use indexed addressing, you must explicitly specify the index length (always long for ColdFire), e.g. change
lea (a0,d1),a2 -----> lea (a0,d1.l),a2
(There are about 8 lines like this)
Hope this helps
Simon