summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaplus.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-10 20:25:15 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-10 20:25:15 +0200
commit56861bc5bf050f0acffa7e0d907d91ebab6c1799 (patch)
tree99482228b1de56fe10f2f9d8419110e82c1562b4 /src/mame/includes/gaplus.h
parent736a740322ad3f056c5741fef8e1f737821944f9 (diff)
drivers starting with g, h and i: removed read* and write* macros (nw)
Diffstat (limited to 'src/mame/includes/gaplus.h')
-rw-r--r--src/mame/includes/gaplus.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/gaplus.h b/src/mame/includes/gaplus.h
index a9d4f849904..fe3bd36a723 100644
--- a/src/mame/includes/gaplus.h
+++ b/src/mame/includes/gaplus.h
@@ -48,15 +48,15 @@ public:
, m_gfx2_region(*this, "gfx2")
{ }
- DECLARE_WRITE8_MEMBER(irq_1_ctrl_w);
- DECLARE_WRITE8_MEMBER(irq_2_ctrl_w);
- DECLARE_WRITE8_MEMBER(irq_3_ctrl_w);
- DECLARE_WRITE8_MEMBER(sreset_w);
- DECLARE_WRITE8_MEMBER(freset_w);
- DECLARE_WRITE8_MEMBER(customio_3_w);
- DECLARE_READ8_MEMBER(customio_3_r);
- DECLARE_WRITE8_MEMBER(videoram_w);
- DECLARE_WRITE8_MEMBER(starfield_control_w);
+ void irq_1_ctrl_w(offs_t offset, uint8_t data);
+ void irq_2_ctrl_w(offs_t offset, uint8_t data);
+ void irq_3_ctrl_w(offs_t offset, uint8_t data);
+ void sreset_w(offs_t offset, uint8_t data);
+ void freset_w(offs_t offset, uint8_t data);
+ void customio_3_w(offs_t offset, uint8_t data);
+ uint8_t customio_3_r(offs_t offset);
+ void videoram_w(offs_t offset, uint8_t data);
+ void starfield_control_w(offs_t offset, uint8_t data);
void gaplus_palette(palette_device &palette) const;