summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/junofrst.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/junofrst.cpp')
-rw-r--r--src/mame/drivers/junofrst.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/drivers/junofrst.cpp b/src/mame/drivers/junofrst.cpp
index 1de19749a74..b4c837a21f4 100644
--- a/src/mame/drivers/junofrst.cpp
+++ b/src/mame/drivers/junofrst.cpp
@@ -116,10 +116,10 @@ public:
void junofrst(machine_config &config);
private:
- DECLARE_WRITE8_MEMBER(blitter_w);
- DECLARE_WRITE8_MEMBER(bankselect_w);
- DECLARE_WRITE8_MEMBER(sh_irqtrigger_w);
- DECLARE_WRITE8_MEMBER(i8039_irq_w);
+ void blitter_w(offs_t offset, uint8_t data);
+ void bankselect_w(uint8_t data);
+ void sh_irqtrigger_w(uint8_t data);
+ void i8039_irq_w(uint8_t data);
void i8039_irqen_and_status_w(uint8_t data);
uint8_t portA_r();
void portB_w(uint8_t data);
@@ -163,7 +163,7 @@ private:
We have to mask it off otherwise the "Juno First" logo on the title screen is wrong.
*/
-WRITE8_MEMBER(junofrst_state::blitter_w)
+void junofrst_state::blitter_w(offs_t offset, uint8_t data)
{
m_blitterdata[offset] = data;
@@ -216,7 +216,7 @@ WRITE8_MEMBER(junofrst_state::blitter_w)
}
-WRITE8_MEMBER(junofrst_state::bankselect_w)
+void junofrst_state::bankselect_w(uint8_t data)
{
membank("bank1")->set_entry(data & 0x0f);
}
@@ -258,7 +258,7 @@ void junofrst_state::portB_w(uint8_t data)
}
-WRITE8_MEMBER(junofrst_state::sh_irqtrigger_w)
+void junofrst_state::sh_irqtrigger_w(uint8_t data)
{
if (m_last_irq == 0 && data == 1)
{
@@ -270,7 +270,7 @@ WRITE8_MEMBER(junofrst_state::sh_irqtrigger_w)
}
-WRITE8_MEMBER(junofrst_state::i8039_irq_w)
+void junofrst_state::i8039_irq_w(uint8_t data)
{
m_i8039->set_input_line(0, ASSERT_LINE);
}