summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/interpro_ioga.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/interpro_ioga.cpp')
-rw-r--r--src/mame/machine/interpro_ioga.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/interpro_ioga.cpp b/src/mame/machine/interpro_ioga.cpp
index 0d6a0dccfbb..434fc08bee5 100644
--- a/src/mame/machine/interpro_ioga.cpp
+++ b/src/mame/machine/interpro_ioga.cpp
@@ -1210,7 +1210,7 @@ WRITE16_MEMBER(turquoise_ioga_device::eth_w)
m_memory_space->write_word(address, data, mem_mask);
}
-READ16_MEMBER(turquoise_ioga_device::eth_r) const
+READ16_MEMBER(turquoise_ioga_device::eth_r)
{
const u32 address = m_eth_base | ((offset << 1) & ~ETH_BASE_MASK);
@@ -1291,7 +1291,7 @@ WRITE32_MEMBER(sapphire_ioga_device::eth_w)
m_memory_space->write_dword(address, data, mem_mask);
}
-READ32_MEMBER(sapphire_ioga_device::eth_r) const
+READ32_MEMBER(sapphire_ioga_device::eth_r)
{
// top two bits give channel (0=A, 4=B, 8=C, f=?)
const int channel = offset >> 28;