summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author mahlemiut <bsr@xnet.co.nz>2015-04-01 14:42:53 +1300
committer mahlemiut <bsr@xnet.co.nz>2015-04-01 14:43:49 +1300
commita469d29eb82515775423de010f71d406672662de (patch)
treeddddb34d35f232cc78ff3fd8d11895128a50aa07
parent1ea04c4eb6a89be4f87e974665587c365e196e29 (diff)
Fix MT05854 (no whatsnew)
-rw-r--r--src/mess/drivers/ngen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/drivers/ngen.c b/src/mess/drivers/ngen.c
index fe3114b0bee..f89bb6366d9 100644
--- a/src/mess/drivers/ngen.c
+++ b/src/mess/drivers/ngen.c
@@ -129,7 +129,7 @@ public:
DECLARE_WRITE8_MEMBER( dma_3_dack_w ){ popmessage("IOW3: data %02x",data); }
DECLARE_WRITE16_MEMBER(hfd_w);
- DECLARE_READ16_MEMBER(fhd_r);
+ DECLARE_READ16_MEMBER(hfd_r);
DECLARE_WRITE_LINE_MEMBER(fdc_irq_w);
DECLARE_WRITE_LINE_MEMBER(fdc_drq_w);
DECLARE_WRITE8_MEMBER(fdc_control_w);
@@ -429,7 +429,7 @@ WRITE16_MEMBER(ngen_state::xbus_w)
switch(m_xbus_current)
{
case 0x00: // Floppy/Hard disk module
- io.install_readwrite_handler(addr,addr+0xff,0,0,read16_delegate(FUNC(ngen_state::fhd_r),this),write16_delegate(FUNC(ngen_state::hfd_w),this));
+ io.install_readwrite_handler(addr,addr+0xff,read16_delegate(FUNC(ngen_state::hfd_r),this),write16_delegate(FUNC(ngen_state::hfd_w),this),0xffffffff);
break;
default:
cpu->set_input_line(INPUT_LINE_NMI,PULSE_LINE); // reached end of the modules
@@ -526,7 +526,7 @@ WRITE16_MEMBER(ngen_state::hfd_w)
}
}
-READ16_MEMBER(ngen_state::fhd_r)
+READ16_MEMBER(ngen_state::hfd_r)
{
UINT16 ret = 0xffff;