Pristine Ack-5.5
[Ack-5.5.git] / util / ceg / ce_back / obj_back / text4.c
1 #include "mach.h"
2 #include "back.h"
3
4 #undef text2
5
6 #ifdef BYTES_REVERSED
7 #define text2(w)        { *text++ = ((w) >> 8); *text++ = (w);}
8 #else
9 #define text2(w)        { *text++ = (w); *text++ = ((w)>>8);}
10 #endif
11
12 text4( l)
13 FOUR_BYTES l;
14 {
15         if ((text_cnt -= 4) < 0) mem_text();
16 #ifdef WORDS_REVERSED
17         text2( (int) (l>>16));
18         text2( (int) l);
19 #else
20         text2( (int) l);
21         text2( (int) (l>>16));
22 #endif
23 }