summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6805/m68705.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m6805/m68705.cpp')
-rw-r--r--src/devices/cpu/m6805/m68705.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/cpu/m6805/m68705.cpp b/src/devices/cpu/m6805/m68705.cpp
index 08e40e41d9a..e0133bf70ab 100644
--- a/src/devices/cpu/m6805/m68705.cpp
+++ b/src/devices/cpu/m6805/m68705.cpp
@@ -193,7 +193,7 @@ m68705_device::m68705_device(
u32 clock,
device_type type,
u32 addr_width,
- address_map_delegate internal_map)
+ address_map_constructor internal_map)
: m6805_base_device(
mconfig,
tag,
@@ -647,7 +647,7 @@ void m68705_device::add_eprom_state()
* M68705Px family
****************************************************************************/
-DEVICE_ADDRESS_MAP_START( p_map, 8, m68705p_device )
+ADDRESS_MAP_START(m68705p_device::p_map)
ADDRESS_MAP_GLOBAL_MASK(0x07ff)
ADDRESS_MAP_UNMAP_HIGH
@@ -676,7 +676,7 @@ m68705p_device::m68705p_device(
device_t *owner,
u32 clock,
device_type type)
- : m68705_device(mconfig, tag, owner, clock, type, 11, address_map_delegate(FUNC(m68705p_device::p_map), this))
+ : m68705_device(mconfig, tag, owner, clock, type, 11, address_map_constructor(FUNC(m68705p_device::p_map), this))
{
set_port_open_drain<0>(true); // Port A is open drain with internal pull-ups
set_port_mask<2>(0xf0); // Port C is four bits wide
@@ -708,7 +708,7 @@ util::disasm_interface *m68705p_device::create_disassembler()
* M68705Ux family
****************************************************************************/
-DEVICE_ADDRESS_MAP_START( u_map, 8, m68705u_device )
+ADDRESS_MAP_START(m68705u_device::u_map)
ADDRESS_MAP_GLOBAL_MASK(0x0fff)
ADDRESS_MAP_UNMAP_HIGH
@@ -738,7 +738,7 @@ m68705u_device::m68705u_device(
device_t *owner,
u32 clock,
device_type type,
- address_map_delegate internal_map)
+ address_map_constructor internal_map)
: m68705_device(mconfig, tag, owner, clock, type, 12, internal_map)
{
set_port_open_drain<0>(true); // Port A is open drain with internal pull-ups
@@ -750,7 +750,7 @@ m68705u_device::m68705u_device(
device_t *owner,
u32 clock,
device_type type)
- : m68705u_device(mconfig, tag, owner, clock, type, address_map_delegate(FUNC(m68705u_device::u_map), this))
+ : m68705u_device(mconfig, tag, owner, clock, type, address_map_constructor(FUNC(m68705u_device::u_map), this))
{
}
@@ -782,7 +782,7 @@ util::disasm_interface *m68705u_device::create_disassembler()
* M68705Rx family
****************************************************************************/
-DEVICE_ADDRESS_MAP_START( r_map, 8, m68705r_device )
+ADDRESS_MAP_START(m68705r_device::r_map)
ADDRESS_MAP_GLOBAL_MASK(0x0fff)
ADDRESS_MAP_UNMAP_HIGH
@@ -814,7 +814,7 @@ m68705r_device::m68705r_device(
device_t *owner,
u32 clock,
device_type type)
- : m68705u_device(mconfig, tag, owner, clock, type, address_map_delegate(FUNC(m68705r_device::r_map), this))
+ : m68705u_device(mconfig, tag, owner, clock, type, address_map_constructor(FUNC(m68705r_device::r_map), this))
{
}