summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bottom9.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bottom9.h')
-rw-r--r--src/mame/includes/bottom9.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/bottom9.h b/src/mame/includes/bottom9.h
index 4c43831bb46..7f912617590 100644
--- a/src/mame/includes/bottom9.h
+++ b/src/mame/includes/bottom9.h
@@ -47,17 +47,17 @@ public:
required_device<k051960_device> m_k051960;
required_device<k051316_device> m_k051316;
required_device<palette_device> m_palette;
- DECLARE_READ8_MEMBER(k052109_051960_r);
- DECLARE_WRITE8_MEMBER(k052109_051960_w);
- DECLARE_READ8_MEMBER(bottom9_bankedram1_r);
- DECLARE_WRITE8_MEMBER(bottom9_bankedram1_w);
- DECLARE_READ8_MEMBER(bottom9_bankedram2_r);
- DECLARE_WRITE8_MEMBER(bottom9_bankedram2_w);
- DECLARE_WRITE8_MEMBER(bankswitch_w);
- DECLARE_WRITE8_MEMBER(bottom9_1f90_w);
- DECLARE_WRITE8_MEMBER(bottom9_sh_irqtrigger_w);
- DECLARE_WRITE8_MEMBER(nmi_enable_w);
- DECLARE_WRITE8_MEMBER(sound_bank_w);
+ uint8_t k052109_051960_r(offs_t offset);
+ void k052109_051960_w(offs_t offset, uint8_t data);
+ uint8_t bottom9_bankedram1_r(offs_t offset);
+ void bottom9_bankedram1_w(offs_t offset, uint8_t data);
+ uint8_t bottom9_bankedram2_r(offs_t offset);
+ void bottom9_bankedram2_w(offs_t offset, uint8_t data);
+ void bankswitch_w(uint8_t data);
+ void bottom9_1f90_w(uint8_t data);
+ void bottom9_sh_irqtrigger_w(uint8_t data);
+ void nmi_enable_w(uint8_t data);
+ void sound_bank_w(uint8_t data);
virtual void machine_start() override;
virtual void machine_reset() override;
uint32_t screen_update_bottom9(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);