summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/astrocde.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/astrocde.cpp')
-rw-r--r--src/mame/video/astrocde.cpp17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/mame/video/astrocde.cpp b/src/mame/video/astrocde.cpp
index cc53ca0cf1a..8a3fccb18ad 100644
--- a/src/mame/video/astrocde.cpp
+++ b/src/mame/video/astrocde.cpp
@@ -20,14 +20,27 @@
void astrocde_state::machine_start()
{
- save_item(NAME(m_port_1_last));
- save_item(NAME(m_port_2_last));
save_item(NAME(m_ram_write_enable));
save_item(NAME(m_input_select));
+}
+
+void seawolf2_state::machine_start()
+{
+ astrocde_state::machine_start();
+
+ save_item(NAME(m_port_1_last));
+ save_item(NAME(m_port_2_last));
m_port_1_last = m_port_2_last = 0xff;
}
+void tenpindx_state::machine_start()
+{
+ astrocde_state::machine_start();
+
+ m_lamps.resolve();
+}
+
/*************************************