02884: kopunch: CPU is specified as a 4 MHz 8080 when it should be a 4 MHz Z80.

It's actually an 8085, as dox points out.
This commit is contained in:
Aaron Giles 2009-01-29 09:05:19 +00:00
parent af09f6a1d6
commit 6c7315b616

View File

@ -177,7 +177,7 @@ GFXDECODE_END
static MACHINE_DRIVER_START( kopunch )
/* basic machine hardware */
MDRV_CPU_ADD("main", 8080, 4000000) /* 4 MHz ???? uses 8080 instructions, not z80 */
MDRV_CPU_ADD("main", 8085A, 4000000) /* 4 MHz ???? Uses SIM, must be 8085 */
MDRV_CPU_PROGRAM_MAP(kopunch_map,0)
MDRV_CPU_IO_MAP(kopunch_io_map,0)
MDRV_CPU_VBLANK_INT_HACK(kopunch_interrupt,4) /* ??? */