ack/util/ceg/ce_back/obj_back/rom4.c
1987-11-20 10:41:03 +00:00

16 lines
201 B
C

#include "mach.h"
rom4( l)
FOUR_BYTES l;
{
#ifdef WORDS_REVERSED
rom2( (short) ((unsigned long)l>>16));
rom2( (short) l);
#else
rom2( (short) l);
rom2( (short) ((unsigned long)l>>16));
#endif
}