mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
More 6809 identifications (nw)
This commit is contained in:
parent
82059e236d
commit
1ec4cadd44
@ -16,6 +16,7 @@ TODO:
|
||||
at 2nd title screen and attract mode (purple surface) = light & dark aqua
|
||||
This color will not be affected by scroll. Leftmost 8pixels are light, next
|
||||
16 pixels are dark, the next 16 pixels are light, and so on.
|
||||
- Verify CPU clocks again. Main CPU is a HD68B09P, and next to it is a 8 MHz XTAL.
|
||||
|
||||
Revisions:
|
||||
- Updated starfield according to Uki's report. (AT)
|
||||
@ -239,11 +240,11 @@ void aeroboto_state::machine_reset()
|
||||
static MACHINE_CONFIG_START( formatz )
|
||||
|
||||
/* basic machine hardware */
|
||||
MCFG_CPU_ADD("maincpu", M6809, XTAL_10MHz/8) /* verified on pcb */
|
||||
MCFG_CPU_ADD("maincpu", MC6809, XTAL_10MHz/2) /* verified on pcb */
|
||||
MCFG_CPU_PROGRAM_MAP(main_map)
|
||||
MCFG_CPU_VBLANK_INT_DRIVER("screen", aeroboto_state, aeroboto_interrupt)
|
||||
|
||||
MCFG_CPU_ADD("audiocpu", M6809, XTAL_10MHz/16) /* verified on pcb */
|
||||
MCFG_CPU_ADD("audiocpu", MC6809, XTAL_10MHz/4) /* verified on pcb */
|
||||
MCFG_CPU_PROGRAM_MAP(sound_map)
|
||||
MCFG_CPU_VBLANK_INT_DRIVER("screen", aeroboto_state, irq0_line_hold)
|
||||
|
||||
|
@ -492,7 +492,7 @@ DRIVER_INIT_MEMBER( wmg_state, wmg )
|
||||
static MACHINE_CONFIG_START( wmg )
|
||||
|
||||
/* basic machine hardware */
|
||||
MCFG_CPU_ADD("maincpu", M6809, MASTER_CLOCK/3/4)
|
||||
MCFG_CPU_ADD("maincpu", MC6809E, MASTER_CLOCK/3/4)
|
||||
MCFG_CPU_PROGRAM_MAP(wmg_cpu1)
|
||||
|
||||
MCFG_CPU_ADD("soundcpu", M6808, SOUND_CLOCK)
|
||||
|
Loading…
Reference in New Issue
Block a user