summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/n8080.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/n8080.h')
-rw-r--r--src/mame/includes/n8080.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/mame/includes/n8080.h b/src/mame/includes/n8080.h
index 142368729cd..bafc7829a8d 100644
--- a/src/mame/includes/n8080.h
+++ b/src/mame/includes/n8080.h
@@ -80,22 +80,22 @@ public:
DECLARE_WRITE_LINE_MEMBER(n8080_inte_callback);
DECLARE_WRITE8_MEMBER(n8080_status_callback);
virtual void machine_start() override;
- DECLARE_MACHINE_RESET(spacefev);
- DECLARE_VIDEO_START(spacefev);
+ void machine_reset_spacefev();
+ void video_start_spacefev() ATTR_COLD;
DECLARE_PALETTE_INIT(n8080);
- DECLARE_MACHINE_RESET(sheriff);
- DECLARE_VIDEO_START(sheriff);
- DECLARE_MACHINE_RESET(helifire);
- DECLARE_VIDEO_START(helifire);
+ void machine_reset_sheriff();
+ void video_start_sheriff() ATTR_COLD;
+ void machine_reset_helifire();
+ void video_start_helifire() ATTR_COLD;
DECLARE_PALETTE_INIT(helifire);
- DECLARE_SOUND_START(spacefev);
- DECLARE_SOUND_RESET(spacefev);
- DECLARE_SOUND_START(sheriff);
- DECLARE_SOUND_RESET(sheriff);
- DECLARE_SOUND_START(helifire);
- DECLARE_SOUND_RESET(helifire);
- DECLARE_MACHINE_START(n8080);
- DECLARE_MACHINE_RESET(n8080);
+ void sound_start_spacefev() ATTR_COLD;
+ void sound_reset_spacefev();
+ void sound_start_sheriff() ATTR_COLD;
+ void sound_reset_sheriff();
+ void sound_start_helifire() ATTR_COLD;
+ void sound_reset_helifire();
+ void machine_start_n8080() ATTR_COLD;
+ void machine_reset_n8080();
uint32_t screen_update_spacefev(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_sheriff(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_helifire(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);