summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/bebox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/bebox.cpp')
-rw-r--r--src/mame/machine/bebox.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/bebox.cpp b/src/mame/machine/bebox.cpp
index 058271da9fd..1608cd17540 100644
--- a/src/mame/machine/bebox.cpp
+++ b/src/mame/machine/bebox.cpp
@@ -598,17 +598,17 @@ WRITE_LINE_MEMBER(bebox_state::bebox_timer0_w)
*
*************************************/
-READ8_MEMBER(bebox_state::bebox_flash_r )
+READ8_MEMBER(bebox_state::bebox_flash_r)
{
offset = (offset & ~7) | (7 - (offset & 7));
- return m_flash->read(offset);
+ return m_flash->read(space, offset);
}
-WRITE8_MEMBER(bebox_state::bebox_flash_w )
+WRITE8_MEMBER(bebox_state::bebox_flash_w)
{
offset = (offset & ~7) | (7 - (offset & 7));
- m_flash->write(offset, data);
+ m_flash->write(space, offset, data);
}
/*************************************