mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
MC68HC11 is big-endian (nw)
This commit is contained in:
parent
1a6ed0c5af
commit
c527f0bd3c
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user