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/cpu/m6502/m6509.cpp | |
parent | 29825789a8c177387dbcf0c7fd0d2fb55b987e40 (diff) |
Pet peeving with extreme prejudice (nw)
Diffstat (limited to 'src/devices/cpu/m6502/m6509.cpp')
-rw-r--r-- | src/devices/cpu/m6502/m6509.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m6502/m6509.cpp b/src/devices/cpu/m6502/m6509.cpp index e1af60eac4b..828d3459b88 100644 --- a/src/devices/cpu/m6502/m6509.cpp +++ b/src/devices/cpu/m6502/m6509.cpp @@ -17,9 +17,9 @@ DEFINE_DEVICE_TYPE(M6509, m6509_device, "m6509", "M6509") m6509_device::m6509_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : m6502_device(mconfig, M6509, tag, owner, clock), XPC(0), bank_i(0), bank_y(0) { - program_config.m_addrbus_width = 20; + program_config.m_addr_width = 20; program_config.m_logaddr_width = 20; - sprogram_config.m_addrbus_width = 20; + sprogram_config.m_addr_width = 20; sprogram_config.m_logaddr_width = 20; } |