summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tourtabl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tourtabl.c')
-rw-r--r--src/mame/drivers/tourtabl.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/tourtabl.c b/src/mame/drivers/tourtabl.c
index e1aa9487644..bc74e8d2a05 100644
--- a/src/mame/drivers/tourtabl.c
+++ b/src/mame/drivers/tourtabl.c
@@ -20,11 +20,12 @@ public:
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu") { }
+ required_device<cpu_device> m_maincpu;
+
DECLARE_WRITE8_MEMBER(tourtabl_led_w);
DECLARE_READ16_MEMBER(tourtabl_read_input_port);
DECLARE_READ8_MEMBER(tourtabl_get_databus_contents);
DECLARE_WRITE8_MEMBER(watchdog_w);
- required_device<cpu_device> m_maincpu;
};
@@ -201,5 +202,5 @@ ROM_START( tourtab2 )
ROM_END
-GAME( 1978, tourtabl, 0, tourtabl, tourtabl, driver_device, 0, ROT0, "Atari", "Tournament Table (set 1)", 0 )
-GAME( 1978, tourtab2, tourtabl, tourtabl, tourtabl, driver_device, 0, ROT0, "Atari", "Tournament Table (set 2)", 0 )
+GAME( 1978, tourtabl, 0, tourtabl, tourtabl, driver_device, 0, ROT0, "Atari", "Tournament Table (set 1)", GAME_SUPPORTS_SAVE )
+GAME( 1978, tourtab2, tourtabl, tourtabl, tourtabl, driver_device, 0, ROT0, "Atari", "Tournament Table (set 2)", GAME_SUPPORTS_SAVE )