diff options
author | 2013-01-11 07:32:46 +0000 | |
---|---|---|
committer | 2013-01-11 07:32:46 +0000 | |
commit | 0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch) | |
tree | 234109de1123b13f217494af4b3f8efad346d5cc /src/mess/machine/x68k_neptunex.c | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/mess/machine/x68k_neptunex.c')
-rw-r--r-- | src/mess/machine/x68k_neptunex.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mess/machine/x68k_neptunex.c b/src/mess/machine/x68k_neptunex.c index a92db6f4ded..8fa24f9b1d4 100644 --- a/src/mess/machine/x68k_neptunex.c +++ b/src/mess/machine/x68k_neptunex.c @@ -32,7 +32,7 @@ machine_config_constructor x68k_neptune_device::device_mconfig_additions() const } x68k_neptune_device::x68k_neptune_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, X68K_NEPTUNEX, "Neptune-X", tag, owner, clock), + : device_t(mconfig, X68K_NEPTUNEX, "Neptune-X", tag, owner, clock), device_x68k_expansion_card_interface(mconfig, *this), m_dp8390(*this, "dp8390d") { @@ -71,7 +71,7 @@ READ16_MEMBER(x68k_neptune_device::x68k_neptune_port_r) { m_dp8390->dp8390_cs(CLEAR_LINE); return (m_dp8390->dp8390_r(space, offset, 0xff) << 8)| - m_dp8390->dp8390_r(space, offset+1, 0xff); + m_dp8390->dp8390_r(space, offset+1, 0xff); } //if(mem_mask == 0x00ff) offset++; switch(offset) @@ -150,4 +150,3 @@ WRITE_LINE_MEMBER(x68k_neptune_device::x68k_neptune_irq_w) m_slot->irq2_w(state); logerror("Neptune: IRQ2 set to %i\n",state); } - |