This article is from the Mac Programming FAQ, by Jon Watte h+@austin.metrowerks.com with numerous contributions by others.
Assuming you're not calling Color QuickDraw (which is not
available on accellerated SEs), you most probably have an
odd-aligned word access somewhere.
The 68000 does not allow words or longwords to be read from odd
addresses, while the 68020 and up relaxes this restriction (it
still is slower than aligned-word access though)
This may or may not crash depending on your compiler:
*code*
struct foo {
char c1 ;
char c2 ;
char c3 ;
char c4 ;
char c5 ;
} bar ;
long * x = ( long * ) & bar . c2 ;
* x = 0x12345678 ; /* X is odd if compiler doesn't pad */
char foo [ 10 ] ;
long * x = ( long * ) & foo [ 1 ] ;
* x = 0x12345678 ;
*end*
 
Continue to: