Hello Kamat
CW4.0.2 is an old version that was released before Y2001. We have no this version installed now, and the current Windows 7, 8 does not support this tool either.
Whether compiler optimization is enabled in your project? Please disable the optimization to see whether there is any different.
Please locate the code line which introduces the compiler error. There is a known problem in CodeWarrior 4.1 for such code:
ImpulsiTOT = (OverloadCounter << 16) | DeltaImpulsi;
If change it to:
ImpulsiTOT = (OverloadCounter << 16);
ImpulsiTOT = ImpulsiTOT | DeltaImpulsi;
The compiler error will be worked around.
Best Regards
Fiona Kuang
TIC - Technical Information Center
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Mark Correct button. Thank you!
-----------------------------------------------------------------------------------------------------------------------