diff options
Diffstat (limited to 'src/devices/cpu/m6800/m6801.cpp')
-rw-r--r-- | src/devices/cpu/m6800/m6801.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/cpu/m6800/m6801.cpp b/src/devices/cpu/m6800/m6801.cpp index d799d737c1b..cff7f922245 100644 --- a/src/devices/cpu/m6800/m6801.cpp +++ b/src/devices/cpu/m6800/m6801.cpp @@ -274,7 +274,7 @@ void m6801_cpu_device::m6801_io(address_map &map) void m6801_cpu_device::m6803_mem(address_map &map) { m6801_io(map); - map(0x0080, 0x00ff).ram().share("internal"); + map(0x0080, 0x00ff).ram().share(m_internal_ram); } void m6801_cpu_device::m6801_mem(address_map &map) @@ -300,7 +300,7 @@ void m6801u4_cpu_device::m6801u4_io(address_map &map) void m6801u4_cpu_device::m6801u4_mem(address_map &map) { m6801u4_io(map); - map(0x0040, 0x00ff).ram().share("internal"); + map(0x0040, 0x00ff).ram().share(m_internal_ram); map(0xf000, 0xffff).rom().region(DEVICE_SELF, 0); } @@ -351,13 +351,13 @@ void hd6301x_cpu_device::hd6301x_io(address_map &map) void hd6301x_cpu_device::hd6303x_mem(address_map &map) { hd6303x_io(map); - map(0x0040, 0x00ff).ram().share("internal"); + map(0x0040, 0x00ff).ram().share(m_internal_ram); } void hd6301x_cpu_device::hd6301x_mem(address_map &map) { hd6301x_io(map); - map(0x0040, 0x00ff).ram().share("internal"); + map(0x0040, 0x00ff).ram().share(m_internal_ram); map(0xf000, 0xffff).rom().region(DEVICE_SELF, 0); } @@ -387,13 +387,13 @@ void hd6301y_cpu_device::hd6301y_io(address_map &map) void hd6301y_cpu_device::hd6303y_mem(address_map &map) { hd6303y_io(map); - map(0x0040, 0x013f).ram().share("internal"); + map(0x0040, 0x013f).ram().share(m_internal_ram); } void hd6301y_cpu_device::hd6301y_mem(address_map &map) { hd6301y_io(map); - map(0x0040, 0x013f).ram().share("internal"); + map(0x0040, 0x013f).ram().share(m_internal_ram); map(0xc000, 0xffff).rom().region(DEVICE_SELF, 0); } @@ -428,7 +428,7 @@ m6801_cpu_device::m6801_cpu_device(const machine_config &mconfig, device_type ty , m_out_sc2_func(*this) , m_out_sertx_func(*this) , m_standby_func(*this) - , m_internal_ram(*this, "internal") + , m_internal_ram(*this, "internal_ram") , m_nvram_bytes(nvram_bytes) , m_nvram_defval(0) , m_nvram_battery(true) |