summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/cpm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/cpm.cpp')
-rw-r--r--src/devices/bus/c64/cpm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/c64/cpm.cpp b/src/devices/bus/c64/cpm.cpp
index c74cab3d55b..b5ef249fe65 100644
--- a/src/devices/bus/c64/cpm.cpp
+++ b/src/devices/bus/c64/cpm.cpp
@@ -61,9 +61,9 @@ void c64_cpm_cartridge_device::z80_io(address_map &map)
//-------------------------------------------------
MACHINE_CONFIG_START(c64_cpm_cartridge_device::device_add_mconfig)
- MCFG_CPU_ADD(Z80_TAG, Z80, 3000000)
- MCFG_CPU_PROGRAM_MAP(z80_mem)
- MCFG_CPU_IO_MAP(z80_io)
+ MCFG_DEVICE_ADD(Z80_TAG, Z80, 3000000)
+ MCFG_DEVICE_PROGRAM_MAP(z80_mem)
+ MCFG_DEVICE_IO_MAP(z80_io)
MACHINE_CONFIG_END