mirror of
https://github.com/holub/mame
synced 2025-05-19 03:59:35 +03:00
(MESS) snes: tagmap lookups reduction. kthx Firewave to spot this. nw.
This commit is contained in:
parent
056c7d387c
commit
b57ab19a6a
@ -110,12 +110,12 @@ public:
|
||||
|
||||
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 )
|
||||
{
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user