diff options
author | 2018-08-24 10:40:47 -0400 | |
---|---|---|
committer | 2018-08-24 10:40:50 -0400 | |
commit | d88f47953a9cca3e6a7849b860bed7b3fa1b5381 (patch) | |
tree | 6275a3ad6d08cb8d34bacbf53e9e5bca65f3bb63 | |
parent | 726cdca4dd23c7d2f344256406b791e5b50c83c2 (diff) |
nec.cpp: logaddr_width should remain 20 for V33/V53 (nw)
-rw-r--r-- | src/devices/cpu/nec/nec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/nec/nec.cpp b/src/devices/cpu/nec/nec.cpp index 5aa6da1eb3d..caf50fb7fc8 100644 --- a/src/devices/cpu/nec/nec.cpp +++ b/src/devices/cpu/nec/nec.cpp @@ -124,7 +124,7 @@ DEFINE_DEVICE_TYPE(V33A, v33a_device, "v33a", "NEC V33A") nec_common_device::nec_common_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, bool is_16bit, uint8_t prefetch_size, uint8_t prefetch_cycles, uint32_t chip_type, address_map_constructor internal_port_map) : cpu_device(mconfig, type, tag, owner, clock) - , m_program_config("program", ENDIANNESS_LITTLE, is_16bit ? 16 : 8, chip_type == V33_TYPE ? 24 : 20, 0, chip_type == V33_TYPE ? 24 : 20, chip_type == V33_TYPE ? 14 : 0) + , m_program_config("program", ENDIANNESS_LITTLE, is_16bit ? 16 : 8, chip_type == V33_TYPE ? 24 : 20, 0, 20, chip_type == V33_TYPE ? 14 : 0) , m_io_config("io", ENDIANNESS_LITTLE, is_16bit ? 16 : 8, 16, 0, internal_port_map) , m_prefetch_size(prefetch_size) , m_prefetch_cycles(prefetch_cycles) |