summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/mamecore.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-12-04 06:08:32 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-12-04 06:08:32 +0000
commit85b961f5af76d175f1f192ef0370691b43c267c3 (patch)
tree5fc27a087900322dea411ca43adccaa90aeafc05 /src/emu/mamecore.h
parent0309522e8737332b1b2f8b99110b1fff99b33a86 (diff)
CPU_IS_LE -> ENDIANNESS_LITTLE
CPU_IS_BE -> ENDIANNESS_BIG Also fixed help for step over/in to specify correct keys.
Diffstat (limited to 'src/emu/mamecore.h')
-rw-r--r--src/emu/mamecore.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/emu/mamecore.h b/src/emu/mamecore.h
index fcb4753e217..c6198f9f3e6 100644
--- a/src/emu/mamecore.h
+++ b/src/emu/mamecore.h
@@ -141,6 +141,15 @@ typedef union
#endif
+
+/* Endianness constants */
+enum
+{
+ ENDIANNESS_LITTLE = 0, /* emulated CPU is little endian */
+ ENDIANNESS_BIG /* emulated CPU is big endian */
+};
+
+
/* orientation of bitmaps */
#define ORIENTATION_FLIP_X 0x0001 /* mirror everything in the X direction */
#define ORIENTATION_FLIP_Y 0x0002 /* mirror everything in the Y direction */