Initial revision

This commit is contained in:
kaashoek 1988-05-27 17:07:58 +00:00
parent c7beb3208f
commit 2edf3315d6

View file

@ -0,0 +1,13 @@
#include "mach.h"
text4( l)
FOUR_BYTES l;
{
#ifdef WORDS_REVERSED
text2( (short) ((unsigned long)l>>16));
text2( (short) l);
#else
text2( (short) l);
text2( (short) ((unsigned long)l>>16));
#endif
}