aboutsummaryrefslogtreecommitdiff
path: root/source/port.h
diff options
context:
space:
mode:
authortwinaphex2014-12-15 00:59:52 +0100
committertwinaphex2014-12-15 00:59:52 +0100
commit6b8c7d2376bb04578dec209eeafc037c33a32d45 (patch)
tree01e95a3b8e66ea12004d20a667f3f3eff45b5107 /source/port.h
parentb27c451831082179cc9bc3c1b3424ebb0f66dd74 (diff)
downloadsnesemu-6b8c7d2376bb04578dec209eeafc037c33a32d45.tar.gz
snesemu-6b8c7d2376bb04578dec209eeafc037c33a32d45.tar.bz2
snesemu-6b8c7d2376bb04578dec209eeafc037c33a32d45.zip
Use MSB_FIRST instead of LSB_FIRST
Diffstat (limited to 'source/port.h')
-rw-r--r--source/port.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/port.h b/source/port.h
index 264425f..9dd2229 100644
--- a/source/port.h
+++ b/source/port.h
@@ -202,16 +202,13 @@ void MixSound(void);
#if defined(__i386__) || defined(__i486__) || defined(__i586__) || \
defined(__WIN32__) || defined(__alpha__)
-#define LSB_FIRST
#define FAST_LSB_WORD_ACCESS
#elif defined(__MIPSEL__)
-#define LSB_FIRST
// On little-endian MIPS, a 16-bit word can be read directly from an address
// only if it's aligned.
#define FAST_ALIGNED_LSB_WORD_ACCESS
#else
//#define MSB_FIRST
-#define LSB_FIRST
//#define FAST_LSB_WORD_ACCESS
#endif