summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/pmd85.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/pmd85.cpp')
-rw-r--r--src/mame/machine/pmd85.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mame/machine/pmd85.cpp b/src/mame/machine/pmd85.cpp
index 1e446c06c3b..acddc4e1978 100644
--- a/src/mame/machine/pmd85.cpp
+++ b/src/mame/machine/pmd85.cpp
@@ -469,7 +469,7 @@ READ8_MEMBER(pmd85_state::pmd85_io_r)
switch (offset & 0x80)
{
case 0x80: /* Motherboard 8255 */
- return m_ppi8255_0->read(space, offset & 0x03);
+ return m_ppi8255_0->read(offset & 0x03);
}
break;
case 0x08: /* ROM module connector */
@@ -485,7 +485,7 @@ READ8_MEMBER(pmd85_state::pmd85_io_r)
switch (offset & 0x80)
{
case 0x80: /* ROM module 8255 */
- return m_ppi8255_3->read(space, offset & 0x03);
+ return m_ppi8255_3->read(offset & 0x03);
}
}
break;
@@ -500,11 +500,11 @@ READ8_MEMBER(pmd85_state::pmd85_io_r)
case 0x10: /* 8251 (casette recorder, V24) */
return m_uart->read(offset & 0x01);
case 0x40: /* 8255 (GPIO/0, GPIO/1) */
- return m_ppi8255_1->read(space, offset & 0x03);
+ return m_ppi8255_1->read(offset & 0x03);
case 0x50: /* 8253 */
- return m_pit8253->read(space, offset & 0x03);
+ return m_pit8253->read(offset & 0x03);
case 0x70: /* 8255 (IMS-2) */
- return m_ppi8255_2->read(space, offset & 0x03);
+ return m_ppi8255_2->read(offset & 0x03);
}
break;
case 0x80: /* external interfaces */
@@ -531,7 +531,7 @@ WRITE8_MEMBER(pmd85_state::pmd85_io_w)
switch (offset & 0x80)
{
case 0x80: /* Motherboard 8255 */
- m_ppi8255_0->write(space, offset & 0x03, data);
+ m_ppi8255_0->write(offset & 0x03, data);
/* PMD-85.3 memory banking */
if ((offset & 0x03) == 0x03)
{
@@ -554,7 +554,7 @@ WRITE8_MEMBER(pmd85_state::pmd85_io_w)
switch (offset & 0x80)
{
case 0x80: /* ROM module 8255 */
- m_ppi8255_3->write(space, offset & 0x03, data);
+ m_ppi8255_3->write(offset & 0x03, data);
break;
}
}
@@ -571,14 +571,14 @@ WRITE8_MEMBER(pmd85_state::pmd85_io_w)
m_uart->write(offset & 0x01, data);
break;
case 0x40: /* 8255 (GPIO/0, GPIO/0) */
- m_ppi8255_1->write(space, offset & 0x03, data);
+ m_ppi8255_1->write(offset & 0x03, data);
break;
case 0x50: /* 8253 */
- m_pit8253->write(space, offset & 0x03, data);
+ m_pit8253->write(offset & 0x03, data);
logerror ("8253 writing. Address: %02x, Data: %02x\n", offset, data);
break;
case 0x70: /* 8255 (IMS-2) */
- m_ppi8255_2->write(space, offset & 0x03, data);
+ m_ppi8255_2->write(offset & 0x03, data);
break;
}
break;
@@ -612,7 +612,7 @@ READ8_MEMBER(pmd85_state::mato_io_r)
switch (offset & 0x80)
{
case 0x80: /* Motherboard 8255 */
- return m_ppi8255_0->read(space, offset & 0x03);
+ return m_ppi8255_0->read(offset & 0x03);
}
break;
}
@@ -635,7 +635,7 @@ WRITE8_MEMBER(pmd85_state::mato_io_w)
switch (offset & 0x80)
{
case 0x80: /* Motherboard 8255 */
- return m_ppi8255_0->write(space, offset & 0x03, data);
+ return m_ppi8255_0->write(offset & 0x03, data);
}
break;
}