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

@@ -6,10 +6,10 @@ TWO_BYTES w;
{
if ((_data_cnt -= 2) < 0) mem_data();
#ifdef BYTES_REVERSED
*data++ = ( unsigned short)w>>8;
*data++ = w>>8;
*data++ = w;
#else
*data++ = w;
*data++ = ( unsigned short)w>>8;
*data++ = w>>8;
#endif
}