summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author mooglyguy <rholtz@batcountryentertainment.com>2014-11-21 10:23:28 +0100
committer mooglyguy <rholtz@batcountryentertainment.com>2014-11-21 10:23:28 +0100
commitb1e387efbf1a8a832a207162227c13ca0f23a3aa (patch)
treea8bf8fed10e8297798f151b0b42eb8e75076a4a3
parent51b72fe151cd7c5ed3ac1af4eb65b22b2eb49692 (diff)
Avoid setting the DP_FREEZE bit, gets Banjo-Kazooie to boot, nw
-rw-r--r--src/mame/machine/n64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/n64.c b/src/mame/machine/n64.c
index 685374c130c..aeb91786c4b 100644
--- a/src/mame/machine/n64.c
+++ b/src/mame/machine/n64.c
@@ -955,7 +955,7 @@ WRITE32_MEMBER( n64_periphs::dp_reg_w )
if (data & 0x00000001) current_status &= ~DP_STATUS_XBUS_DMA;
if (data & 0x00000002) current_status |= DP_STATUS_XBUS_DMA;
if (data & 0x00000004) current_status &= ~DP_STATUS_FREEZE;
- if (data & 0x00000008) current_status |= DP_STATUS_FREEZE;
+ //if (data & 0x00000008) current_status |= DP_STATUS_FREEZE; // Temp: Do nothing for now
if (data & 0x00000010) current_status &= ~DP_STATUS_FLUSH;
if (data & 0x00000020) current_status |= DP_STATUS_FLUSH;
if (data & 0x00000200) dp_clock = 0;