summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/gaelco2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/gaelco2.cpp')
-rw-r--r--src/mame/machine/gaelco2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/gaelco2.cpp b/src/mame/machine/gaelco2.cpp
index 4e206995643..b18c00bcfa2 100644
--- a/src/mame/machine/gaelco2.cpp
+++ b/src/mame/machine/gaelco2.cpp
@@ -167,13 +167,13 @@ void gaelco2_state::init_wrally2()
void gaelco2_state::shareram_w(offs_t offset, u8 data)
{
- // why isn't there an AM_SOMETHING macro for this?
+ // why isn't there address map functionality for this?
reinterpret_cast<u8 *>(m_shareram.target())[BYTE_XOR_BE(offset)] = data;
}
u8 gaelco2_state::shareram_r(offs_t offset)
{
- // why isn't there an AM_SOMETHING macro for this?
+ // why isn't there address map functionality for this?
return reinterpret_cast<u8 const *>(m_shareram.target())[BYTE_XOR_BE(offset)];
}