mirror of
https://github.com/holub/mame
synced 2025-06-02 02:49:44 +03:00
add multfish.h
This commit is contained in:
parent
e7c75086f9
commit
2ce99369e7
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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/ms32.h svneol=native#text/plain
|
||||||
src/mame/includes/msisaac.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/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/munchmo.h svneol=native#text/plain
|
||||||
src/mame/includes/mustache.h svneol=native#text/plain
|
src/mame/includes/mustache.h svneol=native#text/plain
|
||||||
src/mame/includes/mw8080bw.h svneol=native#text/plain
|
src/mame/includes/mw8080bw.h svneol=native#text/plain
|
||||||
|
31
src/mame/includes/multfish.h
Normal file
31
src/mame/includes/multfish.h
Normal 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;
|
||||||
|
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user