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.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/model2.cpp b/src/mame/drivers/model2.cpp
index d3554ab58f2..5b5bdfb190d 100644
--- a/src/mame/drivers/model2.cpp
+++ b/src/mame/drivers/model2.cpp
@@ -554,7 +554,9 @@ READ32_MEMBER(model2_state::fifoctl_r)
}
// #### 1 if fifo empty, zerogun needs | 0x04 set
- return r | 0x04;
+ // TODO: 0x04 is probably fifo full, zeroguna stalls with a fresh nvram with that enabled!
+ return r;
+// return r | 0x04;
}
READ32_MEMBER(model2_state::videoctl_r)