Pristine Ack-5.5
[Ack-5.5.git] / util / ceg / ce_back / obj_back / text2.c
1 #include "mach.h"
2 #include "back.h"
3
4 text2( w)
5 TWO_BYTES w;
6 {
7         if ((text_cnt -= 2) < 0) mem_text();
8 #ifdef BYTES_REVERSED
9         *text++ = w>>8;
10         *text++ = w;
11 #else
12         *text++ = w;
13         *text++ = w>>8;
14 #endif
15 }