summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m6502')
-rw-r--r--src/devices/cpu/m6502/m4510.cpp4
-rw-r--r--src/devices/cpu/m6502/m6504.cpp4
-rw-r--r--src/devices/cpu/m6502/m6507.cpp4
-rw-r--r--src/devices/cpu/m6502/m6509.cpp4
4 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/cpu/m6502/m4510.cpp b/src/devices/cpu/m6502/m4510.cpp
index 5848f66970d..f3241497eb6 100644
--- a/src/devices/cpu/m6502/m4510.cpp
+++ b/src/devices/cpu/m6502/m4510.cpp
@@ -19,10 +19,10 @@ m4510_device::m4510_device(const machine_config &mconfig, const char *tag, devic
map_enable(0),
nomap(false)
{
- program_config.m_addrbus_width = 20;
+ program_config.m_addr_width = 20;
program_config.m_logaddr_width = 16;
program_config.m_page_shift = 13;
- sprogram_config.m_addrbus_width = 20;
+ sprogram_config.m_addr_width = 20;
sprogram_config.m_logaddr_width = 16;
sprogram_config.m_page_shift = 13;
}
diff --git a/src/devices/cpu/m6502/m6504.cpp b/src/devices/cpu/m6502/m6504.cpp
index c6a20579333..0d7322b5fed 100644
--- a/src/devices/cpu/m6502/m6504.cpp
+++ b/src/devices/cpu/m6502/m6504.cpp
@@ -16,8 +16,8 @@ DEFINE_DEVICE_TYPE(M6504, m6504_device, "m6504", "M6504")
m6504_device::m6504_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6502_device(mconfig, M6504, tag, owner, clock)
{
- program_config.m_addrbus_width = 13;
- sprogram_config.m_addrbus_width = 13;
+ program_config.m_addr_width = 13;
+ sprogram_config.m_addr_width = 13;
}
void m6504_device::device_start()
diff --git a/src/devices/cpu/m6502/m6507.cpp b/src/devices/cpu/m6502/m6507.cpp
index d64b08c54c9..b6d44ae4c21 100644
--- a/src/devices/cpu/m6502/m6507.cpp
+++ b/src/devices/cpu/m6502/m6507.cpp
@@ -16,8 +16,8 @@ DEFINE_DEVICE_TYPE(M6507, m6507_device, "m6507", "M6507")
m6507_device::m6507_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6502_device(mconfig, M6507, tag, owner, clock)
{
- program_config.m_addrbus_width = 13;
- sprogram_config.m_addrbus_width = 13;
+ program_config.m_addr_width = 13;
+ sprogram_config.m_addr_width = 13;
}
void m6507_device::device_start()
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;
}