summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/model2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/model2.cpp')
-rw-r--r--src/mame/drivers/model2.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mame/drivers/model2.cpp b/src/mame/drivers/model2.cpp
index 1c07aa053aa..323b948c61c 100644
--- a/src/mame/drivers/model2.cpp
+++ b/src/mame/drivers/model2.cpp
@@ -433,6 +433,11 @@ MACHINE_RESET_MEMBER(model2_state,model2_common)
m_timers[i]->reset();
m_uart->write_cts(0);
+
+ // initialize bufferram to a sane default
+ // TODO: HW can probably parse this at will somehow ...
+ for (i=0;i<0x20000/4;i++)
+ m_bufferram[i] = 0x07800f0f;
}
MACHINE_RESET_MEMBER(model2_state,model2o)