summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/snes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/snes.cpp')
-rw-r--r--src/mame/drivers/snes.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/snes.cpp b/src/mame/drivers/snes.cpp
index a5103b41fcb..56b5467623c 100644
--- a/src/mame/drivers/snes.cpp
+++ b/src/mame/drivers/snes.cpp
@@ -126,12 +126,12 @@ private:
READ8_MEMBER(snes_console_state::spc_ram_100_r )
{
- return m_spc700->spc_ram_r(space, offset + 0x100);
+ return m_spc700->spc_ram_r(offset + 0x100);
}
WRITE8_MEMBER(snes_console_state::spc_ram_100_w )
{
- m_spc700->spc_ram_w(space, offset + 0x100, data);
+ m_spc700->spc_ram_w(offset + 0x100, data);
}
// Memory access for the various types of carts
@@ -1365,7 +1365,7 @@ void snes_console_state::snes(machine_config &config)
/* sound hardware */
SPEAKER(config, "lspeaker").front_left();
SPEAKER(config, "rspeaker").front_right();
- SNES_SOUND(config, m_spc700);
+ SNES_SOUND(config, m_spc700, XTAL(24'576'000) / 12);
m_spc700->add_route(0, "lspeaker", 1.00);
m_spc700->add_route(1, "rspeaker", 1.00);