Inline Assembly Constants

Cosmic uses an assembly constant syntax, whereas this compiler employs the normal C constant syntax (refer the following listing).

Listing: Normal C Constant Syntax


#ifdef __MWERKS__
  and 0xF8

#else

  and #$F8

#endif