From ce3deb056d83a8f20b0e7a6389e4f409fdf35a2f Mon Sep 17 00:00:00 2001 From: hap Date: Sun, 16 Sep 2018 12:31:07 +0200 Subject: video21: realized we have a I8080A device, though in mame it's identical to I8080 (nw) --- src/mame/drivers/meyc8080.cpp | 2 +- src/mame/drivers/video21.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/meyc8080.cpp b/src/mame/drivers/meyc8080.cpp index 3cbceeb37b6..eef08d8ddbf 100644 --- a/src/mame/drivers/meyc8080.cpp +++ b/src/mame/drivers/meyc8080.cpp @@ -591,7 +591,7 @@ INPUT_PORTS_END MACHINE_CONFIG_START(meyc8080_state::meyc8080) /* basic machine hardware */ - MCFG_DEVICE_ADD("maincpu", I8080, XTAL(20'000'000) / 10) // divider guessed + MCFG_DEVICE_ADD("maincpu", I8080A, XTAL(20'000'000) / 10) // divider guessed MCFG_DEVICE_PROGRAM_MAP(meyc8080_map) NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_0); diff --git a/src/mame/drivers/video21.cpp b/src/mame/drivers/video21.cpp index cc681aa8e9b..f5841df44fb 100644 --- a/src/mame/drivers/video21.cpp +++ b/src/mame/drivers/video21.cpp @@ -181,7 +181,7 @@ GFXDECODE_END MACHINE_CONFIG_START( video21_state::video21 ) /* basic machine hardware */ - MCFG_DEVICE_ADD("maincpu", I8080, 20.79_MHz_XTAL / 16) // crystal confirmed but divisor unknown + MCFG_DEVICE_ADD("maincpu", I8080A, 20.79_MHz_XTAL / 16) // crystal confirmed but divisor unknown MCFG_DEVICE_PROGRAM_MAP(mem_map) MCFG_DEVICE_IO_MAP(io_map) -- cgit v1.2.3