summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/tiny.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/tiny.c')
-rw-r--r--src/mame/tiny.c70
1 files changed, 0 insertions, 70 deletions
diff --git a/src/mame/tiny.c b/src/mame/tiny.c
deleted file mode 100644
index 8aa2a10eb5b..00000000000
--- a/src/mame/tiny.c
+++ /dev/null
@@ -1,70 +0,0 @@
-/******************************************************************************
-
- tiny.c
-
- mamedriv.c substitute file for "tiny" MAME builds.
-
- Copyright Nicola Salmoria and the MAME Team.
- Visit http://mamedev.org for licensing and usage restrictions.
-
- The list of used drivers. Drivers have to be included here to be recognized
- by the executable.
-
- To save some typing, we use a hack here. This file is recursively #included
- twice, with different definitions of the DRIVER() macro. The first one
- declares external references to the drivers; the second one builds an array
- storing all the drivers.
-
-******************************************************************************/
-
-#include "emu.h"
-
-#ifndef DRIVER_RECURSIVE
-
-#define DRIVER_RECURSIVE
-
-/* step 1: declare all external references */
-#define DRIVER(NAME) GAME_EXTERN(NAME);
-#include "tiny.c"
-
-/* step 2: define the drivers[] array */
-#undef DRIVER
-#define DRIVER(NAME) &GAME_NAME(NAME),
-const game_driver * const drivers[] =
-{
-#include "tiny.c"
- 0 /* end of array */
-};
-
-#else /* DRIVER_RECURSIVE */
-
- DRIVER( robby ) /* (c) 1981 Bally Midway */
- DRIVER( gridlee ) /* [1983 Videa] prototype - no copyright notice */
- DRIVER( alienar ) /* (c) 1985 Duncan Brown */
-
- DRIVER( carpolo ) /* (c) 1977 Exidy */
- DRIVER( sidetrac ) /* (c) 1979 Exidy */
- DRIVER( targ ) /* (c) 1980 Exidy */
- DRIVER( spectar ) /* (c) 1980 Exidy */
- DRIVER( teetert ) /* (c) 1982 Exidy */
- DRIVER( hardhat ) /* (c) 1982 */
- DRIVER( fax ) /* (c) 1983 */
- DRIVER( fax2 ) /* (c) 1983 */
- DRIVER( circus ) /* (c) 1977 Exidy */
- DRIVER( robotbwl ) /* (c) 197? Exidy */
- DRIVER( crash ) /* (c) 1979 Exidy */
- DRIVER( ripcord ) /* (c) 1979 Exidy */
- DRIVER( starfire ) /* (c) 1979 Exidy */
- DRIVER( starfirea ) /* (c) 1979 Exidy */
- DRIVER( fireone ) /* (c) 1979 Exidy */
- DRIVER( starfir2 ) /* (c) 1979 Exidy */
- DRIVER( victory ) /* (c) 1982 */
- DRIVER( victorba ) /* (c) 1982 */
- DRIVER( topgunnr ) /* (c) 1986 */
-
- DRIVER( looping ) /* (c) 1982 Video Games GMBH */
- DRIVER( supertnk ) /* (c) 1981 VIDEO GAMES GmbH, W.-GERMANY */
-
- DRIVER( wrally ) /* (c) 1993 - Ref 930705 */
-
-#endif /* DRIVER_RECURSIVE */