diff options
Diffstat (limited to 'src/mame/machine/hng64_net.cpp')
-rw-r--r-- | src/mame/machine/hng64_net.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/hng64_net.cpp b/src/mame/machine/hng64_net.cpp index 4d3eca22b74..596997081e7 100644 --- a/src/mame/machine/hng64_net.cpp +++ b/src/mame/machine/hng64_net.cpp @@ -143,7 +143,7 @@ void hng64_state::reset_net() } MACHINE_CONFIG_START(hng64_state::hng64_network) - MCFG_CPU_ADD("network", KL5C80A12, HNG64_MASTER_CLOCK / 4) /* KL5C80A12CFP - binary compatible with Z80. */ - MCFG_CPU_PROGRAM_MAP(hng_comm_map) - MCFG_CPU_IO_MAP(hng_comm_io_map) + MCFG_DEVICE_ADD("network", KL5C80A12, HNG64_MASTER_CLOCK / 4) /* KL5C80A12CFP - binary compatible with Z80. */ + MCFG_DEVICE_PROGRAM_MAP(hng_comm_map) + MCFG_DEVICE_IO_MAP(hng_comm_io_map) MACHINE_CONFIG_END |