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.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/machine/bebox.cpp b/src/mame/machine/bebox.cpp
index 4f98bce00ef..d5f99d9d0a7 100644
--- a/src/mame/machine/bebox.cpp
+++ b/src/mame/machine/bebox.cpp
@@ -770,7 +770,8 @@ void bebox_state::machine_reset()
m_ppc1->set_input_line(INPUT_LINE_RESET, CLEAR_LINE);
m_ppc2->set_input_line(INPUT_LINE_RESET, ASSERT_LINE);
- memcpy(m_flash->space().get_read_ptr(0),memregion("user1")->base(),0x200000);
+ // Endianness? Bah!
+ memcpy(m_flash->base(),memregion("user1")->base(),0x200000);
}
void bebox_state::machine_start()