text4.c 384 B

1234567891011121314151617181920212223
  1. #include "mach.h"
  2. #include "back.h"
  3. #undef text2
  4. #ifdef BYTES_REVERSED
  5. #define text2(w) { *text++ = ((w) >> 8); *text++ = (w);}
  6. #else
  7. #define text2(w) { *text++ = (w); *text++ = ((w)>>8);}
  8. #endif
  9. text4( l)
  10. FOUR_BYTES l;
  11. {
  12. if ((text_cnt -= 4) < 0) mem_text();
  13. #ifdef WORDS_REVERSED
  14. text2( (int) (l>>16));
  15. text2( (int) l);
  16. #else
  17. text2( (int) l);
  18. text2( (int) (l>>16));
  19. #endif
  20. }