summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/newport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/newport.cpp')
-rw-r--r--src/mame/video/newport.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/newport.cpp b/src/mame/video/newport.cpp
index 3b12ccd003d..ca3013ac298 100644
--- a/src/mame/video/newport.cpp
+++ b/src/mame/video/newport.cpp
@@ -48,7 +48,7 @@ DEFINE_DEVICE_TYPE(NEWPORT_VIDEO, newport_video_device, "newport_video", "SGI Ne
newport_video_device::newport_video_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, NEWPORT_VIDEO, tag, owner, clock)
, m_maincpu(*this, finder_base::DUMMY_TAG)
- , m_ioc2(*this, finder_base::DUMMY_TAG)
+ , m_hpc3(*this, finder_base::DUMMY_TAG)
{
}
@@ -715,7 +715,7 @@ WRITE_LINE_MEMBER(newport_video_device::vblank_w)
{
m_rex3.m_status |= 0x20;
if (BIT(m_vc2.m_display_ctrl, 0))
- m_ioc2->raise_local1_irq(ioc2_device::INT3_LOCAL1_RETRACE);
+ m_hpc3->raise_local_irq(1, ioc2_device::INT3_LOCAL1_RETRACE);
}
}
@@ -938,7 +938,7 @@ READ32_MEMBER(newport_video_device::rex3_r)
LOGMASKED(LOG_REX3, "REX3 Status Read: %08x\n", m_rex3.m_status);
uint32_t old_status = m_rex3.m_status;
m_rex3.m_status = 0;
- m_ioc2->lower_local1_irq(ioc2_device::INT3_LOCAL1_RETRACE);
+ m_hpc3->lower_local_irq(1, ioc2_device::INT3_LOCAL1_RETRACE);
return old_status;
}
case 0x133c/4: