From b1e387efbf1a8a832a207162227c13ca0f23a3aa Mon Sep 17 00:00:00 2001 From: mooglyguy Date: Fri, 21 Nov 2014 10:23:28 +0100 Subject: Avoid setting the DP_FREEZE bit, gets Banjo-Kazooie to boot, nw --- src/mame/machine/n64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3