summaryrefslogblamecommitdiffstatshomepage
path: root/src/mame/includes/momoko.h
blob: 53ef7baafd3920034fccd041cb4849a2e8cffc05 (plain) (tree)
1
2
3
4
5
6
7
8
9
                       
                        





                                                                          
                                         
 
       
                                                                                      
                                                    


                                                  
                                                  
                                            

                                                
 
                             



                                                  

                           









                                        
                                                     









                                                     

                                              
                                                                                                              
                                                                                                                       
                                              
                                                      
                                                  
                                            

                                                
  
// license:BSD-3-Clause
// copyright-holders:Uki
/*************************************************************************

    Momoko 120%

*************************************************************************/

class momoko_state : public driver_device
{
public:
	momoko_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag),
		m_spriteram(*this, "spriteram"),
		m_videoram(*this, "videoram"),
		m_bg_scrolly(*this, "bg_scrolly"),
		m_bg_scrollx(*this, "bg_scrollx"),
		m_maincpu(*this, "maincpu"),
		m_gfxdecode(*this, "gfxdecode"),
		m_palette(*this, "palette") { }

	/* memory pointers */
	required_shared_ptr<uint8_t> m_spriteram;
	required_shared_ptr<uint8_t> m_videoram;
	required_shared_ptr<uint8_t> m_bg_scrolly;
	required_shared_ptr<uint8_t> m_bg_scrollx;

	/* video-related */
	uint8_t          m_fg_scrollx;
	uint8_t          m_fg_scrolly;
	uint8_t          m_fg_select;
	uint8_t          m_text_scrolly;
	uint8_t          m_text_mode;
	uint8_t          m_bg_select;
	uint8_t          m_bg_priority;
	uint8_t          m_bg_mask;
	uint8_t          m_fg_mask;
	uint8_t          m_flipscreen;
	DECLARE_WRITE8_MEMBER(momoko_bg_read_bank_w);
	DECLARE_WRITE8_MEMBER(momoko_fg_scrollx_w);
	DECLARE_WRITE8_MEMBER(momoko_fg_scrolly_w);
	DECLARE_WRITE8_MEMBER(momoko_fg_select_w);
	DECLARE_WRITE8_MEMBER(momoko_text_scrolly_w);
	DECLARE_WRITE8_MEMBER(momoko_text_mode_w);
	DECLARE_WRITE8_MEMBER(momoko_bg_scrollx_w);
	DECLARE_WRITE8_MEMBER(momoko_bg_scrolly_w);
	DECLARE_WRITE8_MEMBER(momoko_bg_select_w);
	DECLARE_WRITE8_MEMBER(momoko_bg_priority_w);
	DECLARE_WRITE8_MEMBER(momoko_flipscreen_w);
	virtual void machine_start() override;
	virtual void machine_reset() override;
	uint32_t screen_update_momoko(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
	void momoko_draw_bg_pri( bitmap_ind16 &bitmap, int chr, int col, int flipx, int flipy, int x, int y, int pri );
	required_device<cpu_device> m_maincpu;
	required_device<gfxdecode_device> m_gfxdecode;
	required_device<palette_device> m_palette;
	void momoko(machine_config &config);
	void momoko_map(address_map &map);
	void momoko_sound_map(address_map &map);
};