summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/funworld.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-05-15 18:15:39 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-05-15 18:15:39 +0200
commit7fd817a1d637d1c7c40da14dade8f63460d1b3a4 (patch)
tree91569462245bc5610e430bab28b31421014b2c97 /src/mame/includes/funworld.h
parent761d726697721751ecbe1e972b7760dad5d11ff9 (diff)
various drivers: READ/WRITE macros removal (nw)
Diffstat (limited to 'src/mame/includes/funworld.h')
-rw-r--r--src/mame/includes/funworld.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/funworld.h b/src/mame/includes/funworld.h
index 7168d56c7ee..4bed1e1bc19 100644
--- a/src/mame/includes/funworld.h
+++ b/src/mame/includes/funworld.h
@@ -47,8 +47,8 @@ public:
protected:
DECLARE_WRITE8_MEMBER(funworld_videoram_w);
DECLARE_WRITE8_MEMBER(funworld_colorram_w);
- DECLARE_WRITE8_MEMBER(funworld_lamp_a_w);
- DECLARE_WRITE8_MEMBER(funworld_lamp_b_w);
+ void funworld_lamp_a_w(uint8_t data);
+ void funworld_lamp_b_w(uint8_t data);
virtual void machine_start() override { m_lamps.resolve(); }
virtual void video_start() override;
@@ -66,8 +66,8 @@ private:
DECLARE_READ8_MEMBER(questions_r);
DECLARE_WRITE8_MEMBER(question_bank_w);
DECLARE_WRITE_LINE_MEMBER(pia1_ca2_w);
- DECLARE_READ8_MEMBER(funquiz_ay8910_a_r);
- DECLARE_READ8_MEMBER(funquiz_ay8910_b_r);
+ uint8_t funquiz_ay8910_a_r();
+ uint8_t funquiz_ay8910_b_r();
void cuoreuno_map(address_map &map);
void funquiz_map(address_map &map);