summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mc68hc11
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-01-01 17:28:09 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-01-01 17:28:09 -0500
commitc527f0bd3c5bec4c5dc607a7f0e5d58dd01aaf48 (patch)
treebf96d2dfb5c88b183a18b2c2aa193b900762d329 /src/devices/cpu/mc68hc11
parent1a6ed0c5afc9f57eb836e57aad0a85dfb241c914 (diff)
MC68HC11 is big-endian (nw)
Diffstat (limited to 'src/devices/cpu/mc68hc11')
-rw-r--r--src/devices/cpu/mc68hc11/mc68hc11.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/mc68hc11/mc68hc11.cpp b/src/devices/cpu/mc68hc11/mc68hc11.cpp
index 76d4ef56c56..4f360ff581c 100644
--- a/src/devices/cpu/mc68hc11/mc68hc11.cpp
+++ b/src/devices/cpu/mc68hc11/mc68hc11.cpp
@@ -45,8 +45,8 @@ DEFINE_DEVICE_TYPE(MC68HC11, mc68hc11_cpu_device, "mc68hc11", "MC68HC11")
mc68hc11_cpu_device::mc68hc11_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: cpu_device(mconfig, MC68HC11, tag, owner, clock)
- , m_program_config("program", ENDIANNESS_LITTLE, 8, 16, 0 )
- , m_io_config("io", ENDIANNESS_LITTLE, 8, 8, 0)
+ , m_program_config("program", ENDIANNESS_BIG, 8, 16, 0 )
+ , m_io_config("io", ENDIANNESS_BIG, 8, 8, 0)
/* defaults it to the HC11M0 version for now (I might strip this down on a later date) */
, m_has_extended_io(1)
, m_internal_ram_size(1280)