summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-09-24 17:54:59 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-09-24 17:54:59 -0400
commit075ec5dd000dda4bd06231d2cfb0fbc7a58208ea (patch)
treed5ec381a727296212ca3a3201285c938a2926248
parent88ff0d927bca79a5c7ec41ee57f343ee5c1a044f (diff)
konin: CPU type is likely not Z80 (nw)
-rw-r--r--src/mame/drivers/konin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/konin.cpp b/src/mame/drivers/konin.cpp
index aeec03cd5b3..ab55a8baafd 100644
--- a/src/mame/drivers/konin.cpp
+++ b/src/mame/drivers/konin.cpp
@@ -43,7 +43,7 @@ Terminal settings: 8 data bits, 2 stop bits, no parity @ 9600
****************************************************************************/
#include "emu.h"
-#include "cpu/z80/z80.h"
+#include "cpu/i8085/i8085.h"
#include "machine/i8251.h"
#include "bus/rs232/rs232.h"
#include "machine/clock.h"
@@ -85,7 +85,7 @@ void konin_state::machine_reset()
static MACHINE_CONFIG_START( konin )
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu",Z80, XTAL_4MHz)
+ MCFG_CPU_ADD("maincpu", I8080, XTAL_4MHz)
MCFG_CPU_PROGRAM_MAP(konin_mem)
MCFG_CPU_IO_MAP(konin_io)