summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/turbo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/turbo.h')
-rw-r--r--src/mame/includes/turbo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/turbo.h b/src/mame/includes/turbo.h
index 0e1ed280237..e14e4f89ea1 100644
--- a/src/mame/includes/turbo.h
+++ b/src/mame/includes/turbo.h
@@ -164,11 +164,11 @@ public:
void init_turbo_enc();
void init_turbo_noenc();
TILE_GET_INFO_MEMBER(get_fg_tile_info);
- void video_start_turbo() ATTR_COLD;
+ DECLARE_VIDEO_START(turbo);
DECLARE_PALETTE_INIT(turbo);
DECLARE_PALETTE_INIT(subroc3d);
- void machine_reset_buckrog();
- void video_start_buckrog() ATTR_COLD;
+ DECLARE_MACHINE_RESET(buckrog);
+ DECLARE_VIDEO_START(buckrog);
DECLARE_PALETTE_INIT(buckrog);
uint32_t screen_update_turbo(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_subroc3d(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
E/COMP/CONS ... MooglyGuy2018-05-131-2/+2 * Streamline machine configuration macros - everyone's a device edition. Vas Crabb2018-05-061-4/+4 * (nw) output finder for mw18w, ecoinfr, chexx, kungfur Robbbert2018-04-111-3/+7 * Standardise on IPT_CUSTOM for hooking up custom code in PORT_BIT, leaving IPT... smf-2018-04-031-1/+1 * Address maps macros removal, pass 1 [O. Galibert] Olivier Galibert2018-03-141-16/+18 * API change: Memory maps are now methods of the owner class [O. Galibert] Olivier Galibert2018-02-121-2/+4 * xtal.h is dead, long live to xtal.cpp [O. Galibert] Olivier Galibert2018-01-231-1/+1 * API Change: Machine configs are now a method of the owner class, and the prot... Olivier Galibert2018-01-171-1/+2 * Move static data out of devices into the device types. This is a significant... Vas Crabb2017-05-141-3/+3