summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/namcos2.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-05-15 20:49:58 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-05-15 20:49:58 +0200
commit2b085c4380476fc0a5589239f7d68d6370e6810a (patch)
treed5021b263d25e0df5456a4cb18513d0c56a982ef /src/mame/includes/namcos2.h
parentc682104f5ffd2cc63f318c65f3ceb42e62acd940 (diff)
a last small bunch of macro removals before the week-end (nw)
Diffstat (limited to 'src/mame/includes/namcos2.h')
-rw-r--r--src/mame/includes/namcos2.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/namcos2.h b/src/mame/includes/namcos2.h
index df80e3bab52..5e5b6356de4 100644
--- a/src/mame/includes/namcos2.h
+++ b/src/mame/includes/namcos2.h
@@ -189,8 +189,8 @@ enum
DECLARE_READ16_MEMBER(dpram_word_r);
DECLARE_WRITE16_MEMBER(dpram_word_w);
- DECLARE_READ8_MEMBER(dpram_byte_r);
- DECLARE_WRITE8_MEMBER(dpram_byte_w);
+ uint8_t dpram_byte_r(offs_t offset);
+ void dpram_byte_w(offs_t offset, uint8_t data);
DECLARE_WRITE8_MEMBER(eeprom_w);
DECLARE_READ8_MEMBER(eeprom_r);
@@ -198,8 +198,8 @@ enum
DECLARE_READ16_MEMBER(c140_rom_r);
DECLARE_WRITE8_MEMBER(sound_bankselect_w);
- DECLARE_WRITE8_MEMBER(sound_reset_w);
- DECLARE_WRITE8_MEMBER(system_reset_w);
+ void sound_reset_w(uint8_t data);
+ void system_reset_w(uint8_t data);
void reset_all_subcpus(int state);
virtual void video_start() override;