summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/spacefb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/spacefb.cpp')
-rw-r--r--src/mame/drivers/spacefb.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/drivers/spacefb.cpp b/src/mame/drivers/spacefb.cpp
index 4ec3050251c..073a26ca9fa 100644
--- a/src/mame/drivers/spacefb.cpp
+++ b/src/mame/drivers/spacefb.cpp
@@ -188,11 +188,10 @@ void spacefb_state::machine_start()
void spacefb_state::machine_reset()
{
- address_space &space = m_maincpu->space(AS_IO);
/* the 3 output ports are cleared on reset */
- port_0_w(space, 0, 0);
- port_1_w(space, 0, 0);
- port_2_w(space, 0, 0);
+ port_0_w(0);
+ port_1_w(0);
+ port_2_w(0);
start_interrupt_timer();
}