Inline Assembly and Index Calculation

The Cosmic compiler uses the + operator to calculate offsets into arrays. For the CodeWarrior compiler, use a colon (:) instead:

Listing: Using a Colon for Offset


ldx array:7
#else

  ldx array+7

#endif