// license:BSD-3-Clause // copyright-holders:Brad Oliver #ifndef MAME_INCLUDES_MATMANIA_H #define MAME_INCLUDES_MATMANIA_H #pragma once #include "machine/taito68705interface.h" #include "machine/gen_latch.h" #include "emupal.h" #include "screen.h" class matmania_state : public driver_device { public: matmania_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), m_videoram(*this, "videoram"), m_videoram2(*this, "videoram2"), m_videoram3(*this, "videoram3"), m_colorram(*this, "colorram"), m_colorram2(*this, "colorram2"), m_colorram3(*this, "colorram3"), m_scroll(*this, "scroll"), m_pageselect(*this, "pageselect"), m_spriteram(*this, "spriteram"), m_paletteram(*this, "paletteram"), m_maincpu(*this, "maincpu"), m_audiocpu(*this, "audiocpu"), m_mcu(*this, "mcu"), m_gfxdecode(*this, "gfxdecode"), m_screen(*this, "screen"), m_palette(*this, "palette"), m_soundlatch(*this, "soundlatch") { } void matmania(machine_config &config); void maniach(machine_config &config); protected: virtual void video_start() override; private: /* memory pointers */ required_shared_ptr m_videoram; required_shared_ptr m_videoram2; required_shared_ptr m_videoram3; required_shared_ptr m_colorram; required_shared_ptr m_colorram2; required_shared_ptr m_colorram3; required_shared_ptr m_scroll; required_shared_ptr m_pageselect; required_shared_ptr m_spriteram; required_shared_ptr m_paletteram; /* devices */ required_device m_maincpu; required_device m_audiocpu; optional_device m_mcu; required_device m_gfxdecode; required_device m_screen; required_device m_palette; required_device m_soundlatch; /* video-related */ std::unique_ptr m_tmpbitmap; std::unique_ptr m_tmpbitmap2; DECLARE_READ8_MEMBER(maniach_mcu_status_r); DECLARE_WRITE8_MEMBER(matmania_sh_command_w); DECLARE_WRITE8_MEMBER(maniach_sh_command_w); DECLARE_WRITE8_MEMBER(matmania_paletteram_w); void matmania_palette(palette_device &palette) const; uint32_t screen_update_matmania(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); uint32_t screen_update_maniach(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); void maniach_map(address_map &map); void maniach_sound_map(address_map &map); void matmania_map(address_map &map); void matmania_sound_map(address_map &map); }; #endif // MAME_INCLUDES_MATMANIA_H