1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/*************************************************************************
empty.c
Empty driver.
Copyright Nicola Salmoria and the MAME Team.
Visit http://mamedev.org for licensing and usage restrictions.
**************************************************************************/
#include "driver.h"
#include "uimenu.h"
/*************************************
*
* Machine "start"
*
*************************************/
static MACHINE_START( empty )
{
/* force the UI to show the game select screen */
ui_menu_force_game_select();
}
/*************************************
*
* Machine drivers
*
*************************************/
static MACHINE_DRIVER_START( empty )
MDRV_MACHINE_START(empty)
/* video hardware */
MDRV_VIDEO_ATTRIBUTES(VIDEO_TYPE_RASTER)
MDRV_SCREEN_ADD("main", 0)
MDRV_SCREEN_FORMAT(BITMAP_FORMAT_RGB32)
MDRV_SCREEN_SIZE(640,480)
MDRV_SCREEN_VISIBLE_AREA(0,639, 0,479)
MDRV_SCREEN_REFRESH_RATE(30)
MACHINE_DRIVER_END
/*************************************
*
* Input ports
*
*************************************/
static INPUT_PORTS_START( empty )
INPUT_PORTS_END
/*************************************
*
* ROM definitions
*
*************************************/
ROM_START( empty )
ROM_REGION( 0x10, REGION_USER1, 0 )
ROM_END
/*************************************
*
* Game drivers
*
*************************************/
GAME( 2007, empty, 0, empty, empty, 0, ROT0, "MAME", "No Driver Loaded", 0 )
|