summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/jubilee.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-04-05 20:05:32 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-04-05 20:05:32 -0400
commit922205c6577abfa71e22a2d23a5acc2223bd85c3 (patch)
tree4c7037a052dbf894489e938ba006faafa044d8df /src/mame/drivers/jubilee.cpp
parentbefd92e2fecb851d499865a705aab34885cb1def (diff)
jubileep: Fix CRU address that acknowledges interrupt (nw)
Diffstat (limited to 'src/mame/drivers/jubilee.cpp')
-rw-r--r--src/mame/drivers/jubilee.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}