Correct audio CPU for The Deep

The Deep uses a Rockwell R65C02 CPU for sound. See PCB (top right cpu)
http://adb.arcadeitalia.net/media/mame.current/pcbs/thedeep.png
This commit is contained in:
MASH 2019-08-10 17:15:31 +01:00 committed by GitHub
parent 7b758283ad
commit 0722665689
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ Notes:
#include "emu.h"
#include "includes/thedeep.h"
#include "cpu/m6502/m65c02.h"
#include "cpu/m6502/r65c02.h"
#include "cpu/z80/z80.h"
#include "sound/2203intf.h"
#include "screen.h"
@ -408,7 +408,7 @@ void thedeep_state::thedeep(machine_config &config)
TIMER(config, "scantimer", 0).configure_scanline(FUNC(thedeep_state::interrupt), "screen", 0, 1);
M65C02(config, m_audiocpu, XTAL(12'000'000)/8); /* verified on pcb */
R65C02(config, m_audiocpu, XTAL(12'000'000)/8); /* verified on pcb */
m_audiocpu->set_addrmap(AS_PROGRAM, &thedeep_state::audio_map);
/* IRQ by YM2203, NMI by when sound latch written by main cpu */