bwing, compgolf: CPU type identification (nw)

This commit is contained in:
AJR 2018-02-17 02:07:42 -05:00
parent d04db6d2f0
commit 3beba3b394
2 changed files with 3 additions and 3 deletions

View File

@ -361,10 +361,10 @@ void bwing_state::bwing_postload()
MACHINE_CONFIG_START(bwing_state::bwing)
// basic machine hardware
MCFG_CPU_ADD("maincpu", M6809, 2000000)
MCFG_CPU_ADD("maincpu", MC6809E, 2000000)
MCFG_CPU_PROGRAM_MAP(bwp1_map)
MCFG_CPU_ADD("sub", M6809, 2000000)
MCFG_CPU_ADD("sub", MC6809E, 2000000)
MCFG_CPU_PROGRAM_MAP(bwp2_map)
MCFG_CPU_ADD("audiocpu", DECO16, 2000000)

View File

@ -224,7 +224,7 @@ void compgolf_state::machine_reset()
MACHINE_CONFIG_START(compgolf_state::compgolf)
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M6809, 2000000)
MCFG_CPU_ADD("maincpu", MC6809E, 2000000) // HD68B09EP
MCFG_CPU_PROGRAM_MAP(compgolf_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", compgolf_state, nmi_line_pulse)