// license:BSD-3-Clause // copyright-holders:Phil Stroffolino, Nicola Salmoria #ifndef MAME_INCLUDES_HOMEDATA_H #define MAME_INCLUDES_HOMEDATA_H #pragma once #include "machine/gen_latch.h" #include "sound/sn76496.h" #include "sound/2203intf.h" #include "emupal.h" class homedata_state : public driver_device { public: homedata_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), m_vreg(*this, "vreg"), m_videoram(*this, "videoram"), m_maincpu(*this, "maincpu"), m_audiocpu(*this, "audiocpu"), m_ymsnd(*this, "ymsnd"), m_gfxdecode(*this, "gfxdecode"), m_palette(*this, "palette"), m_soundlatch(*this, "soundlatch"), m_sn(*this, "snsnd") { } void reikaids(machine_config &config); void mrokumei(machine_config &config); void mirderby(machine_config &config); void pteacher(machine_config &config); void lemnangl(machine_config &config); void mjkinjas(machine_config &config); void init_reikaids(); void init_mjikaga(); void init_jogakuen(); void init_battlcry(); void init_mirderby(); private: /* memory pointers */ optional_shared_ptr m_vreg; required_shared_ptr m_videoram; /* video-related */ tilemap_t *m_bg_tilemap[2][4]; int m_visible_page; int m_priority; uint8_t m_reikaids_which; int m_flipscreen; uint8_t m_gfx_bank[2]; // pteacher only uses the first one uint8_t m_blitter_bank; int m_blitter_param_count; uint8_t m_blitter_param[4]; /* buffers last 4 writes to 0x8006 */ /* misc */ int m_vblank; int m_sndbank; int m_keyb; int m_snd_command; int m_upd7807_porta; int m_upd7807_portc; int m_to_cpu; int m_from_cpu; /* device */ required_device m_maincpu; optional_device m_audiocpu; optional_device m_ymsnd; required_device m_gfxdecode; required_device m_palette; optional_device m_soundlatch; // mrokumei optional_device m_sn; // mrokumei and pteacher uint8_t m_prot_data; DECLARE_READ8_MEMBER(mrokumei_keyboard_r); DECLARE_WRITE8_MEMBER(mrokumei_keyboard_select_w); DECLARE_READ8_MEMBER(mrokumei_sound_io_r); DECLARE_WRITE8_MEMBER(mrokumei_sound_bank_w); DECLARE_WRITE8_MEMBER(mrokumei_sound_cmd_w); DECLARE_READ8_MEMBER(reikaids_upd7807_porta_r); DECLARE_WRITE8_MEMBER(reikaids_upd7807_porta_w); DECLARE_WRITE8_MEMBER(reikaids_upd7807_portc_w); DECLARE_READ8_MEMBER(reikaids_io_r); DECLARE_READ8_MEMBER(reikaids_snd_command_r); DECLARE_WRITE8_MEMBER(reikaids_snd_command_w); DECLARE_WRITE8_MEMBER(pteacher_snd_command_w); DECLARE_READ8_MEMBER(pteacher_snd_r); DECLARE_READ8_MEMBER(pteacher_io_r); DECLARE_READ8_MEMBER(pteacher_keyboard_r); DECLARE_READ8_MEMBER(pteacher_upd7807_porta_r); DECLARE_WRITE8_MEMBER(pteacher_snd_answer_w); DECLARE_WRITE8_MEMBER(pteacher_upd7807_porta_w); DECLARE_WRITE8_MEMBER(pteacher_upd7807_portc_w); DECLARE_WRITE8_MEMBER(bankswitch_w); DECLARE_READ8_MEMBER(mirderby_prot_r); DECLARE_WRITE8_MEMBER(mirderby_prot_w); DECLARE_WRITE8_MEMBER(mrokumei_videoram_w); DECLARE_WRITE8_MEMBER(reikaids_videoram_w); DECLARE_WRITE8_MEMBER(reikaids_gfx_bank_w); DECLARE_WRITE8_MEMBER(pteacher_gfx_bank_w); DECLARE_WRITE8_MEMBER(homedata_blitter_param_w); DECLARE_WRITE8_MEMBER(mrokumei_blitter_bank_w); DECLARE_WRITE8_MEMBER(reikaids_blitter_bank_w); DECLARE_WRITE8_MEMBER(pteacher_blitter_bank_w); DECLARE_WRITE8_MEMBER(mrokumei_blitter_start_w); DECLARE_WRITE8_MEMBER(reikaids_blitter_start_w); DECLARE_WRITE8_MEMBER(pteacher_blitter_start_w); TILE_GET_INFO_MEMBER(mrokumei_get_info0_0); TILE_GET_INFO_MEMBER(mrokumei_get_info1_0); TILE_GET_INFO_MEMBER(mrokumei_get_info0_1); TILE_GET_INFO_MEMBER(mrokumei_get_info1_1); TILE_GET_INFO_MEMBER(reikaids_get_info0_0); TILE_GET_INFO_MEMBER(reikaids_get_info1_0); TILE_GET_INFO_MEMBER(reikaids_get_info0_1); TILE_GET_INFO_MEMBER(reikaids_get_info1_1); TILE_GET_INFO_MEMBER(reikaids_get_info0_2); TILE_GET_INFO_MEMBER(reikaids_get_info1_2); TILE_GET_INFO_MEMBER(reikaids_get_info0_3); TILE_GET_INFO_MEMBER(reikaids_get_info1_3); TILE_GET_INFO_MEMBER(pteacher_get_info0_0); TILE_GET_INFO_MEMBER(pteacher_get_info1_0); TILE_GET_INFO_MEMBER(pteacher_get_info0_1); TILE_GET_INFO_MEMBER(pteacher_get_info1_1); TILE_GET_INFO_MEMBER(lemnangl_get_info0_0); TILE_GET_INFO_MEMBER(lemnangl_get_info1_0); TILE_GET_INFO_MEMBER(lemnangl_get_info0_1); TILE_GET_INFO_MEMBER(lemnangl_get_info1_1); TILE_GET_INFO_MEMBER(mirderby_get_info0_0); TILE_GET_INFO_MEMBER(mirderby_get_info1_0); TILE_GET_INFO_MEMBER(mirderby_get_info0_1); TILE_GET_INFO_MEMBER(mirderby_get_info1_1); DECLARE_MACHINE_START(homedata); DECLARE_MACHINE_RESET(homedata); DECLARE_VIDEO_START(mrokumei); DECLARE_PALETTE_INIT(mrokumei); DECLARE_MACHINE_START(reikaids); DECLARE_MACHINE_RESET(reikaids); DECLARE_VIDEO_START(reikaids); DECLARE_PALETTE_INIT(reikaids); DECLARE_MACHINE_START(pteacher); DECLARE_MACHINE_RESET(pteacher); DECLARE_VIDEO_START(pteacher); DECLARE_PALETTE_INIT(pteacher); DECLARE_VIDEO_START(mirderby); DECLARE_PALETTE_INIT(mirderby); DECLARE_VIDEO_START(lemnangl); uint32_t screen_update_mrokumei(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); uint32_t screen_update_reikaids(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); uint32_t screen_update_pteacher(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); uint32_t screen_update_mirderby(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); DECLARE_WRITE_LINE_MEMBER(screen_vblank_homedata); INTERRUPT_GEN_MEMBER(homedata_irq); void mrokumei_handleblit( address_space &space, int rom_base ); void reikaids_handleblit( address_space &space, int rom_base ); void pteacher_handleblit( address_space &space, int rom_base ); inline void mrokumei_info0( tile_data &tileinfo, int tile_index, int page, int gfxbank ); inline void mrokumei_info1( tile_data &tileinfo, int tile_index, int page, int gfxbank ); inline void reikaids_info( tile_data &tileinfo, int tile_index, int page, int layer, int gfxbank ); inline void pteacher_info( tile_data &tileinfo, int tile_index, int page, int layer, int gfxbank ); inline void lemnangl_info( tile_data &tileinfo, int tile_index, int page, int layer, int gfxset, int gfxbank ); inline void mirderby_info0( tile_data &tileinfo, int tile_index, int page, int gfxbank ); inline void mirderby_info1( tile_data &tileinfo, int tile_index, int page, int gfxbank ); void cpu0_map(address_map &map); void cpu1_map(address_map &map); void cpu2_map(address_map &map); void mrokumei_map(address_map &map); void mrokumei_sound_io_map(address_map &map); void mrokumei_sound_map(address_map &map); void pteacher_map(address_map &map); void pteacher_upd7807_map(address_map &map); void reikaids_map(address_map &map); void reikaids_upd7807_map(address_map &map); }; #endif // MAME_INCLUDES_HOMEDATA_H