summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/starshp1.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-15 18:09:06 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-15 18:09:06 +0200
commit351479f33f298ecfe98bfbd8f6e0eea92e06ff72 (patch)
treedf4642c7b930c6b314fc6d646e3a99963b608a4e /src/mame/includes/starshp1.h
parent6224f5059f7322ed2e4779a516538de9032f8c7b (diff)
drivers starting with s: removed read* and write* macros (nw)
Diffstat (limited to 'src/mame/includes/starshp1.h')
-rw-r--r--src/mame/includes/starshp1.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/starshp1.h b/src/mame/includes/starshp1.h
index 324dd17654c..8fca28dd6c5 100644
--- a/src/mame/includes/starshp1.h
+++ b/src/mame/includes/starshp1.h
@@ -71,8 +71,8 @@ public:
private:
virtual void machine_start() override;
- DECLARE_WRITE8_MEMBER(starshp1_collision_reset_w);
- DECLARE_WRITE8_MEMBER(starshp1_analog_in_w);
+ void starshp1_collision_reset_w(uint8_t data);
+ void starshp1_analog_in_w(offs_t offset, uint8_t data);
DECLARE_WRITE_LINE_MEMBER(ship_explode_w);
DECLARE_WRITE_LINE_MEMBER(circle_mod_w);
DECLARE_WRITE_LINE_MEMBER(circle_kill_w);
@@ -80,13 +80,13 @@ private:
DECLARE_WRITE_LINE_MEMBER(inverse_w);
DECLARE_WRITE_LINE_MEMBER(mux_w);
DECLARE_WRITE_LINE_MEMBER(led_w);
- DECLARE_READ8_MEMBER(starshp1_rng_r);
- DECLARE_WRITE8_MEMBER(starshp1_ssadd_w);
- DECLARE_WRITE8_MEMBER(starshp1_sspic_w);
- DECLARE_WRITE8_MEMBER(starshp1_playfield_w);
+ uint8_t starshp1_rng_r();
+ void starshp1_ssadd_w(offs_t offset, uint8_t data);
+ void starshp1_sspic_w(uint8_t data);
+ void starshp1_playfield_w(offs_t offset, uint8_t data);
DECLARE_WRITE_LINE_MEMBER(attract_w);
DECLARE_WRITE_LINE_MEMBER(phasor_w);
- DECLARE_WRITE8_MEMBER(starshp1_analog_out_w);
+ void starshp1_analog_out_w(offs_t offset, uint8_t data);
TILE_GET_INFO_MEMBER(get_tile_info);
virtual void video_start() override;
void starshp1_palette(palette_device &palette) const;