add multfish.h

This commit is contained in:
Brian Troha 2010-12-21 21:47:26 +00:00
parent e7c75086f9
commit 2ce99369e7
2 changed files with 32 additions and 0 deletions

1
.gitattributes vendored
View File

@ -2829,6 +2829,7 @@ src/mame/includes/mrjong.h svneol=native#text/plain
src/mame/includes/ms32.h svneol=native#text/plain
src/mame/includes/msisaac.h svneol=native#text/plain
src/mame/includes/mugsmash.h svneol=native#text/plain
src/mame/includes/multfish.h svneol=native#text/plain
src/mame/includes/munchmo.h svneol=native#text/plain
src/mame/includes/mustache.h svneol=native#text/plain
src/mame/includes/mw8080bw.h svneol=native#text/plain

View File

@ -0,0 +1,31 @@
/*************************************************************************
Igrosoft
*************************************************************************/
class multfish_state : public driver_device
{
public:
multfish_state(running_machine &machine, const driver_device_config_base &config)
: driver_device(machine, config) { }
/* Video related */
UINT8* vid;
int disp_enable;
int xor_paltype;
int xor_palette;
tilemap_t *tilemap;
tilemap_t *reel_tilemap;
/* Misc related */
UINT8 rambk;
UINT8 hopper_motor;
UINT8 hopper;
};