summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tryout.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-07-19 03:13:34 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-07-19 03:13:34 +0000
commit73aaf0db7e51053f0dc7a475b1cb138931c1fd7e (patch)
tree7e76082e809a4d431cdd077a30c6dc49463c9862 /src/mame/drivers/tryout.c
parentf7cd7a6c4ce09d29323f988c5aa6834273614895 (diff)
Tagged all the first CPUs for drivers (mostly as "main").
Added validity checks to ensure no duplicate sound or CPU tags. Fixed several duplicate sound tags from the last checkin. -listxml now outputs the tag names for CPUs and sound chips.
Diffstat (limited to 'src/mame/drivers/tryout.c')
-rw-r--r--src/mame/drivers/tryout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/tryout.c b/src/mame/drivers/tryout.c
index 30454ee4614..03ed16c87d6 100644
--- a/src/mame/drivers/tryout.c
+++ b/src/mame/drivers/tryout.c
@@ -189,7 +189,7 @@ static INTERRUPT_GEN( tryout_interrupt )
static MACHINE_DRIVER_START( tryout )
/* basic machine hardware */
- MDRV_CPU_ADD(M6502, 2000000) /* ? */
+ MDRV_CPU_ADD_TAG("main", M6502, 2000000) /* ? */
MDRV_CPU_PROGRAM_MAP(main_cpu,0)
MDRV_CPU_VBLANK_INT("main", tryout_interrupt)