summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/starwars.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/starwars.h')
-rw-r--r--src/mame/includes/starwars.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/starwars.h b/src/mame/includes/starwars.h
index 14113537f87..1af8a8b50a3 100644
--- a/src/mame/includes/starwars.h
+++ b/src/mame/includes/starwars.h
@@ -73,23 +73,23 @@ private:
int16_t m_B;
int16_t m_C;
int32_t m_ACC;
- DECLARE_WRITE8_MEMBER(irq_ack_w);
- DECLARE_READ8_MEMBER(esb_slapstic_r);
- DECLARE_WRITE8_MEMBER(esb_slapstic_w);
- DECLARE_WRITE8_MEMBER(starwars_nstore_w);
+ void irq_ack_w(uint8_t data);
+ uint8_t esb_slapstic_r(address_space &space, offs_t offset);
+ void esb_slapstic_w(address_space &space, offs_t offset, uint8_t data);
+ void starwars_nstore_w(uint8_t data);
DECLARE_WRITE_LINE_MEMBER(recall_w);
DECLARE_WRITE_LINE_MEMBER(coin1_counter_w);
DECLARE_WRITE_LINE_MEMBER(coin2_counter_w);
- DECLARE_READ8_MEMBER(starwars_prng_r);
+ uint8_t starwars_prng_r();
DECLARE_WRITE_LINE_MEMBER(prng_reset_w);
- DECLARE_READ8_MEMBER(starwars_div_reh_r);
- DECLARE_READ8_MEMBER(starwars_div_rel_r);
- DECLARE_WRITE8_MEMBER(starwars_math_w);
+ uint8_t starwars_div_reh_r();
+ uint8_t starwars_div_rel_r();
+ void starwars_math_w(offs_t offset, uint8_t data);
- DECLARE_READ8_MEMBER(starwars_main_ready_flag_r);
+ uint8_t starwars_main_ready_flag_r();
DECLARE_WRITE_LINE_MEMBER(boost_interleave_hack);
- DECLARE_WRITE8_MEMBER(starwars_soundrst_w);
- DECLARE_WRITE8_MEMBER(quad_pokeyn_w);
+ void starwars_soundrst_w(uint8_t data);
+ void quad_pokeyn_w(offs_t offset, uint8_t data);
virtual void machine_reset() override;
TIMER_CALLBACK_MEMBER(math_run_clear);
uint8_t r6532_porta_r();