diff options
author | 2009-12-13 12:45:07 +0000 | |
---|---|---|
committer | 2009-12-13 12:45:07 +0000 | |
commit | c254101a9a3c38922544d065613fb16ea93fc1d9 (patch) | |
tree | b3e933e9a9a328c81b9cb5f6a2f5afc103306976 | |
parent | 8bdb970d1da9a760af37609b23f241fb93f2de84 (diff) |
03572: pandoras: [possible] Music pitch/speed is too high. [Phil Bennett]
-rw-r--r-- | src/mame/drivers/pandoras.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/pandoras.c b/src/mame/drivers/pandoras.c index 28361721501..2f9d5c70b20 100644 --- a/src/mame/drivers/pandoras.c +++ b/src/mame/drivers/pandoras.c @@ -32,6 +32,7 @@ Boards: #define MASTER_CLOCK XTAL_18_432MHz +#define SOUND_CLOCK XTAL_14_31818MHz static INTERRUPT_GEN( pandoras_master_interrupt ) @@ -362,10 +363,10 @@ static MACHINE_DRIVER_START( pandoras ) MDRV_CPU_PROGRAM_MAP(pandoras_slave_map) MDRV_CPU_VBLANK_INT("screen", pandoras_slave_interrupt) - MDRV_CPU_ADD("audiocpu", Z80, MASTER_CLOCK/8) + MDRV_CPU_ADD("audiocpu", Z80, SOUND_CLOCK/8) MDRV_CPU_PROGRAM_MAP(pandoras_sound_map) - MDRV_CPU_ADD("mcu", I8039, MASTER_CLOCK/2) + MDRV_CPU_ADD("mcu", I8039, SOUND_CLOCK/2) MDRV_CPU_PROGRAM_MAP(pandoras_i8039_map) MDRV_CPU_IO_MAP(pandoras_i8039_io_map) @@ -392,7 +393,7 @@ static MACHINE_DRIVER_START( pandoras ) /* sound hardware */ MDRV_SPEAKER_STANDARD_MONO("mono") - MDRV_SOUND_ADD("aysnd", AY8910, MASTER_CLOCK/8) + MDRV_SOUND_ADD("aysnd", AY8910, SOUND_CLOCK/8) MDRV_SOUND_CONFIG(ay8910_config) MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.40) |