From 922205c6577abfa71e22a2d23a5acc2223bd85c3 Mon Sep 17 00:00:00 2001 From: AJR Date: Fri, 5 Apr 2019 20:05:32 -0400 Subject: jubileep: Fix CRU address that acknowledges interrupt (nw) --- src/mame/drivers/jubilee.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/jubilee.cpp b/src/mame/drivers/jubilee.cpp index 1fd5617df9f..3b12d70ca31 100644 --- a/src/mame/drivers/jubilee.cpp +++ b/src/mame/drivers/jubilee.cpp @@ -340,7 +340,7 @@ WRITE8_MEMBER(jubilee_state::unk_w) is set to one. Maybe this one clears the interrupt. TODO: Check the schematics. */ - if (((offset<<1)==0x0ce2)&&(data==1)) + if (((offset<<1)==0x0cf2)&&(data==1)) { m_maincpu->set_input_line(INT_9980A_LEVEL1, CLEAR_LINE); } -- cgit v1.2.3