summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/glass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/glass.cpp')
-rw-r--r--src/mame/drivers/glass.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/glass.cpp b/src/mame/drivers/glass.cpp
index 1c4b85ea17f..935c82b1529 100644
--- a/src/mame/drivers/glass.cpp
+++ b/src/mame/drivers/glass.cpp
@@ -24,13 +24,13 @@ Todo:
WRITE8_MEMBER(glass_state::shareram_w)
{
- // 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;
}
READ8_MEMBER(glass_state::shareram_r)
{
- // 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)];
}