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

16 lines
222 B
C

#include "mach.h"
#include "back.h"
text2( w)
TWO_BYTES w;
{
#ifdef BYTES_REVERSED
text1( (char) ( ( unsigned short)w>>8));
text1( (char) w);
#else
text1( (char) w);
text1( (char) ( ( unsigned short)w>>8));
#endif
}