many modyfications in search for more speed

This commit is contained in:
ceriel
1988-10-31 15:42:15 +00:00
parent 63f793aff3
commit 7851ff900f
19 changed files with 208 additions and 134 deletions

View File

@@ -1,13 +1,21 @@
#include "mach.h"
#include "back.h"
#ifdef BYTES_REVERSED
#define text2(w) { *text++ = ((w) >> 8); *text++ = (w);}
#else
#define text2(w) { *text++ = (w); *text++ = ((w)>>8);}
#endif
text4( l)
FOUR_BYTES l;
{
if ((_text_cnt -= 4) < 0) mem_text();
#ifdef WORDS_REVERSED
text2( (short) ((unsigned long)l>>16));
text2( (short) l);
text2( (int) (l>>16));
text2( (int) l);
#else
text2( (short) l);
text2( (short) ((unsigned long)l>>16));
text2( (int) l);
text2( (int) (l>>16));
#endif
}