summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/maple-dc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/maple-dc.h')
-rw-r--r--src/mame/machine/maple-dc.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/machine/maple-dc.h b/src/mame/machine/maple-dc.h
index d0219f674fa..19d0a3c7718 100644
--- a/src/mame/machine/maple-dc.h
+++ b/src/mame/machine/maple-dc.h
@@ -27,17 +27,17 @@ public:
template <typename T> void set_maincpu_tag(T &&cpu_tag) { cpu.set_tag(std::forward<T>(cpu_tag)); }
auto irq_callback() { return irq_cb.bind(); }
- DECLARE_READ32_MEMBER(sb_mdstar_r); // 5f6c04
- DECLARE_WRITE32_MEMBER(sb_mdstar_w);
- DECLARE_READ32_MEMBER(sb_mdtsel_r); // 5f6c10
- DECLARE_WRITE32_MEMBER(sb_mdtsel_w);
- DECLARE_READ32_MEMBER(sb_mden_r); // 5f6c14
- DECLARE_WRITE32_MEMBER(sb_mden_w);
- DECLARE_READ32_MEMBER(sb_mdst_r); // 5f6c18
- DECLARE_WRITE32_MEMBER(sb_mdst_w);
- DECLARE_READ32_MEMBER(sb_msys_r); // 5f6c80
- DECLARE_WRITE32_MEMBER(sb_msys_w);
- DECLARE_WRITE32_MEMBER(sb_mdapro_w); // 5f6c8c
+ uint32_t sb_mdstar_r(); // 5f6c04
+ void sb_mdstar_w(uint32_t data);
+ uint32_t sb_mdtsel_r(); // 5f6c10
+ void sb_mdtsel_w(uint32_t data);
+ uint32_t sb_mden_r(); // 5f6c14
+ void sb_mden_w(uint32_t data);
+ uint32_t sb_mdst_r(); // 5f6c18
+ void sb_mdst_w(uint32_t data);
+ uint32_t sb_msys_r(); // 5f6c80
+ void sb_msys_w(uint32_t data);
+ void sb_mdapro_w(uint32_t data); // 5f6c8c
void amap(address_map &map);