summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/k033906.h
blob: 05e6b272c5c2534153f3748d5399b64910056b10 (plain) (blame)
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
/***************************************************************************

    Konami 033906

***************************************************************************/

#ifndef __K033906_H__
#define __K033906_H__


/***************************************************************************
    TYPE DEFINITIONS
***************************************************************************/

typedef struct _k033906_interface k033906_interface;
struct _k033906_interface
{
	const char         *voodoo;
};

/***************************************************************************
    FUNCTION PROTOTYPES
***************************************************************************/

DEVICE_GET_INFO( k033906 );


/***************************************************************************
    MACROS / CONSTANTS
***************************************************************************/

#define K033906		DEVICE_GET_INFO_NAME( k033906 )

#define MDRV_K033906_ADD(_tag, _config) \
	MDRV_DEVICE_ADD(_tag, K033906, 0) \
	MDRV_DEVICE_CONFIG(_config)


/***************************************************************************
    DEVICE I/O FUNCTIONS
***************************************************************************/

extern READ32_DEVICE_HANDLER( k033906_r );
extern WRITE32_DEVICE_HANDLER( k033906_w );
extern void k033906_set_reg( running_device *device, int state );


#endif	/* __K033906_H__ */