summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/amstrad.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/amstrad.h')
-rw-r--r--src/mame/includes/amstrad.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/amstrad.h b/src/mame/includes/amstrad.h
index abbbc52286b..94ffc948eb5 100644
--- a/src/mame/includes/amstrad.h
+++ b/src/mame/includes/amstrad.h
@@ -212,21 +212,21 @@ public:
DECLARE_WRITE8_MEMBER(amstrad_cpc_io_w);
DECLARE_READ8_MEMBER(amstrad_psg_porta_read);
void amstrad_plus_seqcheck(int data);
- void machine_start_amstrad() ATTR_COLD;
- void machine_reset_amstrad();
- void video_start_amstrad() ATTR_COLD;
+ DECLARE_MACHINE_START(amstrad);
+ DECLARE_MACHINE_RESET(amstrad);
+ DECLARE_VIDEO_START(amstrad);
DECLARE_PALETTE_INIT(amstrad_cpc);
DECLARE_PALETTE_INIT(amstrad_cpc_green);
- void machine_start_plus() ATTR_COLD;
- void machine_reset_plus();
+ DECLARE_MACHINE_START(plus);
+ DECLARE_MACHINE_RESET(plus);
DECLARE_PALETTE_INIT(amstrad_plus);
- void machine_start_gx4000() ATTR_COLD;
- void machine_reset_gx4000();
- void machine_start_kccomp() ATTR_COLD;
- void machine_reset_kccomp();
+ DECLARE_MACHINE_START(gx4000);
+ DECLARE_MACHINE_RESET(gx4000);
+ DECLARE_MACHINE_START(kccomp);
+ DECLARE_MACHINE_RESET(kccomp);
DECLARE_PALETTE_INIT(kccomp);
- void machine_start_aleste() ATTR_COLD;
- void machine_reset_aleste();
+ DECLARE_MACHINE_START(aleste);
+ DECLARE_MACHINE_RESET(aleste);
DECLARE_PALETTE_INIT(aleste);
uint32_t screen_update_amstrad(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(screen_vblank_amstrad);