// license:BSD-3-Clause // copyright-holders:Tomasz Slanina /************************************************************************* Jaleco Moero Pro Yakyuu Homerun hardware *************************************************************************/ #include "sound/upd7759.h" #include "sound/samples.h" #include "screen.h" class homerun_state : public driver_device { public: homerun_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), m_maincpu(*this, "maincpu"), m_videoram(*this, "videoram"), m_spriteram(*this, "spriteram"), m_colorram(*this, "colorram"), m_d7756(*this, "d7756"), m_samples(*this, "samples"), m_gfxdecode(*this, "gfxdecode"), m_screen(*this, "screen"), m_palette(*this, "palette") { } required_device m_maincpu; required_shared_ptr m_videoram; required_shared_ptr m_spriteram; required_shared_ptr m_colorram; optional_device m_d7756; optional_device m_samples; required_device m_gfxdecode; required_device m_screen; required_device m_palette; uint8_t m_control; uint8_t m_sample; tilemap_t *m_tilemap; int m_gfx_ctrl; int m_scrollx; int m_scrolly; DECLARE_WRITE8_MEMBER(homerun_control_w); DECLARE_WRITE8_MEMBER(homerun_d7756_sample_w); DECLARE_WRITE8_MEMBER(homerun_videoram_w); DECLARE_WRITE8_MEMBER(homerun_color_w); DECLARE_WRITE8_MEMBER(homerun_scrollhi_w); DECLARE_WRITE8_MEMBER(homerun_scrolly_w); DECLARE_WRITE8_MEMBER(homerun_scrollx_w); DECLARE_CUSTOM_INPUT_MEMBER(homerun_sprite0_r); DECLARE_CUSTOM_INPUT_MEMBER(homerun_d7756_busy_r); DECLARE_CUSTOM_INPUT_MEMBER(ganjaja_d7756_busy_r); DECLARE_CUSTOM_INPUT_MEMBER(ganjaja_hopper_status_r); TILE_GET_INFO_MEMBER(get_homerun_tile_info); virtual void machine_start() override; virtual void machine_reset() override; virtual void video_start() override; uint32_t screen_update_homerun(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); DECLARE_WRITE8_MEMBER(homerun_banking_w); void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect ); void ganjaja(machine_config &config); void dynashot(machine_config &config); void homerun(machine_config &config); void homerun_iomap(address_map &map); void homerun_memmap(address_map &map); };