ack/util/ceg/ce_back/obj_back/text2.c
1989-01-26 13:32:57 +00:00

16 lines
199 B
C

#include "mach.h"
#include "back.h"
text2( w)
TWO_BYTES w;
{
if ((text_cnt -= 2) < 0) mem_text();
#ifdef BYTES_REVERSED
*text++ = w>>8;
*text++ = w;
#else
*text++ = w;
*text++ = w>>8;
#endif
}