From 2ce99369e715f33ab62977dc2dcdaf4c0a0c0805 Mon Sep 17 00:00:00 2001 From: Brian Troha Date: Tue, 21 Dec 2010 21:47:26 +0000 Subject: [PATCH] add multfish.h --- .gitattributes | 1 + src/mame/includes/multfish.h | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 src/mame/includes/multfish.h diff --git a/.gitattributes b/.gitattributes index db82783a7b7..30715fc8537 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 diff --git a/src/mame/includes/multfish.h b/src/mame/includes/multfish.h new file mode 100644 index 00000000000..e0d0908cdec --- /dev/null +++ b/src/mame/includes/multfish.h @@ -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; + +};