ack/util/ceg/ce_back/obj_back/text2.c

16 lines
200 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
}