exidy440.cpp: Correct 6809 types (nw)

This commit is contained in:
AJR 2017-12-11 21:51:50 -05:00
parent f240bab65a
commit a545e65efc
2 changed files with 6 additions and 6 deletions

View File

@ -20,9 +20,9 @@
#define FADE_TO_ZERO 1
#define EXIDY440_AUDIO_CLOCK (XTAL_12_9792MHz / 16)
#define EXIDY440_MC3418_CLOCK (EXIDY440_AUDIO_CLOCK / 16)
#define EXIDY440_MC3417_CLOCK (EXIDY440_AUDIO_CLOCK / 32)
#define EXIDY440_AUDIO_CLOCK (XTAL_12_9792MHz / 4)
#define EXIDY440_MC3418_CLOCK (EXIDY440_AUDIO_CLOCK / 4 / 16)
#define EXIDY440_MC3417_CLOCK (EXIDY440_AUDIO_CLOCK / 4 / 32)
/* internal caching */
@ -875,13 +875,13 @@ ADDRESS_MAP_END
MACHINE_CONFIG_START( exidy440_audio )
MCFG_CPU_ADD("audiocpu", M6809, EXIDY440_AUDIO_CLOCK)
MCFG_CPU_ADD("audiocpu", MC6809, EXIDY440_AUDIO_CLOCK)
MCFG_CPU_PROGRAM_MAP(exidy440_audio_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", driver_device, irq0_line_assert)
MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
MCFG_SOUND_ADD("custom", EXIDY440, EXIDY440_AUDIO_CLOCK/16)
MCFG_SOUND_ADD("custom", EXIDY440, EXIDY440_MC3418_CLOCK)
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)

View File

@ -995,7 +995,7 @@ INPUT_PORTS_END
static MACHINE_CONFIG_START( exidy440 )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M6809, MAIN_CPU_CLOCK)
MCFG_CPU_ADD("maincpu", MC6809E, MAIN_CPU_CLOCK)
MCFG_CPU_PROGRAM_MAP(exidy440_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", exidy440_state, exidy440_vblank_interrupt)