diff options
| author | 2017-11-30 10:54:32 +0100 | |
|---|---|---|
| committer | 2017-11-30 12:29:32 +0100 | |
| commit | 7c8a1fa409e62d755ce0fc1b1b772128fd44663f (patch) | |
| tree | d79f48533b4706a3fbdeb38fe987ac3443c56a2d /src/devices/machine/bankdev.cpp | |
| parent | 29825789a8c177387dbcf0c7fd0d2fb55b987e40 (diff) | |
Pet peeving with extreme prejudice (nw)
Diffstat (limited to 'src/devices/machine/bankdev.cpp')
| -rw-r--r-- | src/devices/machine/bankdev.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/bankdev.cpp b/src/devices/machine/bankdev.cpp index 7abd6e9f5c2..c9b2c5fcfe5 100644 --- a/src/devices/machine/bankdev.cpp +++ b/src/devices/machine/bankdev.cpp @@ -10,8 +10,8 @@ address_map_bank_device::address_map_bank_device( const machine_config &mconfig, : device_t(mconfig, ADDRESS_MAP_BANK, tag, owner, clock), device_memory_interface(mconfig, *this), m_endianness(ENDIANNESS_NATIVE), - m_databus_width(0), - m_addrbus_width(32), + m_data_width(0), + m_addr_width(32), m_stride(1), m_program(nullptr), m_offset(0) @@ -83,7 +83,7 @@ READ64_MEMBER(address_map_bank_device::read64) void address_map_bank_device::device_config_complete() { - m_program_config = address_space_config( "program", m_endianness, m_databus_width, m_addrbus_width ); + m_program_config = address_space_config( "program", m_endianness, m_data_width, m_addr_width ); } void address_map_bank_device::device_start() |
