(MESS) snes: tagmap lookups reduction. kthx Firewave to spot this. nw.

This commit is contained in:
Fabio Priuli 2013-04-12 07:46:43 +00:00
parent 056c7d387c
commit b57ab19a6a

View File

@ -110,12 +110,12 @@ public:
READ8_MEMBER(snes_console_state::spc_ram_100_r ) READ8_MEMBER(snes_console_state::spc_ram_100_r )
{ {
return spc_ram_r(machine().device("spc700"), space, offset + 0x100); return spc_ram_r(m_spc700, space, offset + 0x100);
} }
WRITE8_MEMBER(snes_console_state::spc_ram_100_w ) WRITE8_MEMBER(snes_console_state::spc_ram_100_w )
{ {
spc_ram_w(machine().device("spc700"), space, offset + 0x100, data); spc_ram_w(m_spc700, space, offset + 0x100, data);
} }
// Memory access for the various types of carts // Memory access for the various types of carts