summaryrefslogblamecommitdiffstatshomepage
path: root/src/mame/includes/gaelco.h
blob: 5ddbdcf5e4554676321817daa15733bac915452b (plain) (tree)
1
2
3
4
5
6
7
8
9





                                                                            
                                         
 
       

                                                                                      
 
                             



                                 
                                                                               

                           
                                     

                     
                             










                                                     

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

    Gaelco game hardware from 1991-1996

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

class gaelco_state : public driver_device
{
public:
	gaelco_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) { }

	/* memory pointers */
	UINT16 *     m_videoram;
	UINT16 *     m_spriteram;
	UINT16 *     m_vregs;
	UINT16 *     m_screen;
//  UINT16 *     paletteram;    // currently this uses generic palette handling

	/* video-related */
	tilemap_t      *m_tilemap[2];

	/* devices */
	device_t *m_audiocpu;
};



/*----------- defined in video/gaelco.c -----------*/

WRITE16_HANDLER( gaelco_vram_w );

VIDEO_START( bigkarnk );
VIDEO_START( maniacsq );

SCREEN_UPDATE( bigkarnk );
SCREEN_UPDATE( maniacsq );