summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mainevt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mainevt.h')
-rw-r--r--src/mame/includes/mainevt.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/mainevt.h b/src/mame/includes/mainevt.h
index 8ebd35935fb..2d92d05c1c0 100644
--- a/src/mame/includes/mainevt.h
+++ b/src/mame/includes/mainevt.h
@@ -36,17 +36,17 @@ public:
void mainevt(machine_config &config);
private:
- DECLARE_WRITE8_MEMBER(dv_nmienable_w);
- DECLARE_WRITE8_MEMBER(mainevt_bankswitch_w);
- DECLARE_WRITE8_MEMBER(mainevt_coin_w);
- DECLARE_WRITE8_MEMBER(mainevt_sh_irqtrigger_w);
- DECLARE_WRITE8_MEMBER(mainevt_sh_irqcontrol_w);
- DECLARE_WRITE8_MEMBER(devstor_sh_irqcontrol_w);
- DECLARE_WRITE8_MEMBER(mainevt_sh_bankswitch_w);
- DECLARE_READ8_MEMBER(k052109_051960_r);
- DECLARE_WRITE8_MEMBER(k052109_051960_w);
- DECLARE_READ8_MEMBER(mainevt_sh_busy_r);
- DECLARE_WRITE8_MEMBER(dv_sh_bankswitch_w);
+ void dv_nmienable_w(uint8_t data);
+ void mainevt_bankswitch_w(uint8_t data);
+ void mainevt_coin_w(uint8_t data);
+ void mainevt_sh_irqtrigger_w(uint8_t data);
+ void mainevt_sh_irqcontrol_w(uint8_t data);
+ void devstor_sh_irqcontrol_w(uint8_t data);
+ void mainevt_sh_bankswitch_w(uint8_t data);
+ uint8_t k052109_051960_r(offs_t offset);
+ void k052109_051960_w(offs_t offset, uint8_t data);
+ uint8_t mainevt_sh_busy_r();
+ void dv_sh_bankswitch_w(uint8_t data);
uint32_t screen_update_mainevt(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_dv(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(dv_vblank_w);