summaryrefslogtreecommitdiff
path: root/bin86-0.3/as/byteord.h
diff options
context:
space:
mode:
Diffstat (limited to 'bin86-0.3/as/byteord.h')
-rw-r--r--bin86-0.3/as/byteord.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/bin86-0.3/as/byteord.h b/bin86-0.3/as/byteord.h
deleted file mode 100644
index 01d2d85..0000000
--- a/bin86-0.3/as/byteord.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * bin86/as/byteord.h
- *
- * Copyright (C) 1992 Bruce Evans
- */
-
-/* byteord.h - byte order dependencies for C compiler, assembler, linker */
-
-/* These are for the targets of everything and for linker source too. */
-
-#ifdef I8086
-# define BIG_ENDIAN 0
-# define LONG_BIG_ENDIAN 0 /* except longs are back to front for Xenix */
-#endif
-
-#ifdef I80386
-# define BIG_ENDIAN 0
-# define LONG_BIG_ENDIAN 0
-#endif
-
-#ifdef MC6809
-# define BIG_ENDIAN 1 /* byte order in words is high-low */
-# define LONG_BIG_ENDIAN 1 /* byte order in longs is high-low */
-#endif