diff options
author | 2016-06-17 19:48:14 +0200 | |
---|---|---|
committer | 2016-06-17 21:26:34 +0200 | |
commit | 1982bc3a629b81d2112a1fe99b60023d648acc88 (patch) | |
tree | c0d952a0022b25bf6266ee39aa85a231999a6aad /src/devices/cpu/tms32010 | |
parent | e4c3d9dd4cb43dbbbd0329713c63fae0172c5244 (diff) |
Fix some cpus with virtual ports, mark them with +1 in any case (nw)
Diffstat (limited to 'src/devices/cpu/tms32010')
-rw-r--r-- | src/devices/cpu/tms32010/tms32010.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms32010/tms32010.cpp b/src/devices/cpu/tms32010/tms32010.cpp index 332f09c9dc0..ab49c52b603 100644 --- a/src/devices/cpu/tms32010/tms32010.cpp +++ b/src/devices/cpu/tms32010/tms32010.cpp @@ -102,7 +102,7 @@ tms32010_device::tms32010_device(const machine_config &mconfig, const char *tag, : cpu_device(mconfig, TMS32010, "TMS32010", tag, owner, clock, "tms32010", __FILE__) , m_program_config("program", ENDIANNESS_BIG, 16, 12, -1) , m_data_config("data", ENDIANNESS_BIG, 16, 8, -1, ADDRESS_MAP_NAME(tms32010_ram)) - , m_io_config("io", ENDIANNESS_BIG, 16, 5, -1) + , m_io_config("io", ENDIANNESS_BIG, 16, 4+1, -1) , m_addr_mask(0x0fff) { } @@ -112,7 +112,7 @@ tms32010_device::tms32010_device(const machine_config &mconfig, device_type type : cpu_device(mconfig, type, name, tag, owner, clock, shortname, source) , m_program_config("program", ENDIANNESS_BIG, 16, 12, -1) , m_data_config("data", ENDIANNESS_BIG, 16, 8, -1, ADDRESS_MAP_NAME(tms32015_ram)) - , m_io_config("io", ENDIANNESS_BIG, 16, 5, -1) + , m_io_config("io", ENDIANNESS_BIG, 16, 4+1, -1) , m_addr_mask(addr_mask) { } |