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

16 lines
199 B
C
Raw Normal View History

1987-11-20 10:41:03 +00:00
#include "mach.h"
#include "back.h"
text2( w)
TWO_BYTES w;
{
1989-01-26 13:32:57 +00:00
if ((text_cnt -= 2) < 0) mem_text();
1987-11-20 10:41:03 +00:00
#ifdef BYTES_REVERSED
*text++ = w>>8;
1988-10-20 13:06:10 +00:00
*text++ = w;
1987-11-20 10:41:03 +00:00
#else
1988-10-20 13:06:10 +00:00
*text++ = w;
*text++ = w>>8;
1987-11-20 10:41:03 +00:00
#endif
}