cntsteer.cpp: CPU type (nw)

This commit is contained in:
AJR 2018-02-17 02:17:16 -05:00
parent 3beba3b394
commit a27933029d
2 changed files with 6 additions and 6 deletions

View File

@ -28,7 +28,7 @@ DE-0207-0
|MB3730 558 558 YM3014 YM2203 CP11.1C 12MHz |
|-----------------------------------------------------------|
Notes:
6809 - clock 1.500MHz [12/8]
6809 - MC68B09EP, clock 1.500MHz [12/8]
YM2203 - clock 1.500MHz [12/8]
VSC30 - clock 3.000MHz [12/4, pin 7), custom DECO DIP40 IC
HMC20 - DECO HMC20 custom DIP28 IC. Provides many clocks each divided by 2
@ -389,7 +389,7 @@ void chanbara_state::machine_reset()
MACHINE_CONFIG_START(chanbara_state::chanbara)
MCFG_CPU_ADD("maincpu", M6809, XTAL(12'000'000)/8)
MCFG_CPU_ADD("maincpu", MC6809E, XTAL(12'000'000)/8)
MCFG_CPU_PROGRAM_MAP(chanbara_map)

View File

@ -914,11 +914,11 @@ MACHINE_RESET_MEMBER(cntsteer_state,cntsteer)
MACHINE_CONFIG_START(cntsteer_state::cntsteer)
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M6809, 2000000) /* ? */
MCFG_CPU_ADD("maincpu", MC6809E, 2000000) /* MC68B09E */
MCFG_CPU_PROGRAM_MAP(cntsteer_cpu1_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", cntsteer_state, nmi_line_pulse) /* ? */
MCFG_CPU_ADD("subcpu", M6809, 2000000) /* ? */
MCFG_CPU_ADD("subcpu", MC6809E, 2000000) /* MC68B09E */
MCFG_CPU_PROGRAM_MAP(cntsteer_cpu2_map)
// MCFG_DEVICE_DISABLE()
MCFG_CPU_VBLANK_INT_DRIVER("screen", cntsteer_state, subcpu_vblank_irq) /* ? */
@ -968,11 +968,11 @@ MACHINE_CONFIG_END
MACHINE_CONFIG_START(cntsteer_state::zerotrgt)
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M6809, 2000000) /* ? */
MCFG_CPU_ADD("maincpu", MC6809E, 2000000) /* ? */
MCFG_CPU_PROGRAM_MAP(gekitsui_cpu1_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", cntsteer_state, nmi_line_pulse) /* ? */
MCFG_CPU_ADD("subcpu", M6809, 2000000) /* ? */
MCFG_CPU_ADD("subcpu", MC6809E, 2000000) /* ? */
MCFG_CPU_PROGRAM_MAP(gekitsui_cpu2_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", cntsteer_state, nmi_line_pulse) /* ? */