MC68HC11 is big-endian (nw)

This commit is contained in:
AJR 2018-01-01 17:28:09 -05:00
parent 1a6ed0c5af
commit c527f0bd3c

View File

@ -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)