Initial revision
authorkaashoek <none@none>
Fri, 27 May 1988 17:07:58 +0000 (17:07 +0000)
committerkaashoek <none@none>
Fri, 27 May 1988 17:07:58 +0000 (17:07 +0000)
util/ceg/ce_back/obj_back/text4.c [new file with mode: 0644]

diff --git a/util/ceg/ce_back/obj_back/text4.c b/util/ceg/ce_back/obj_back/text4.c
new file mode 100644 (file)
index 0000000..6b318f3
--- /dev/null
@@ -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
+}