/* --------------------------------------------------------------------------
Name:       endian.c
Function:	Code snippet to illustrate byte order in memory
Versions:
   1.0   1/27/2007   L Simone.  Created.  File compiled for debugging mode.
			Sample code to explore if this processor is Big or Little Endian.
			Check out the byte order in RAM starting at 0x0200.
----------------------------------------------------------------------------- */

int barney = 0xaa55;
long wilma = 0x11223344;
char fred = 0x01;

int main( void )
{
  long sum;
  
  sum = fred + barney + wilma;
 
  return 0;
}

