From 2edf3315d6afb96dd166d39eb6e4f87686e2e421 Mon Sep 17 00:00:00 2001 From: kaashoek Date: Fri, 27 May 1988 17:07:58 +0000 Subject: [PATCH] Initial revision --- util/ceg/ce_back/obj_back/text4.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 util/ceg/ce_back/obj_back/text4.c diff --git a/util/ceg/ce_back/obj_back/text4.c b/util/ceg/ce_back/obj_back/text4.c new file mode 100644 index 000000000..6b318f3da --- /dev/null +++ b/util/ceg/ce_back/obj_back/text4.c @@ -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 +} -- 2.34.1