summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/multfish.h
diff options
context:
space:
mode:
author Brian Troha <briantro@users.noreply.github.com>2010-12-21 21:47:26 +0000
committer Brian Troha <briantro@users.noreply.github.com>2010-12-21 21:47:26 +0000
commit2ce99369e715f33ab62977dc2dcdaf4c0a0c0805 (patch)
treebb5be5fdd327e10a97729e019fa8a4af49b0ed5b /src/mame/includes/multfish.h
parente7c75086f9a9ba6d485d99ab6297455a13167873 (diff)
add multfish.h
Diffstat (limited to 'src/mame/includes/multfish.h')
-rw-r--r--src/mame/includes/multfish.h31
1 files changed, 31 insertions, 0 deletions
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;
+
+};