mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
suna16.cpp: fixed MT08297
This commit is contained in:
parent
96c12e5802
commit
baf088cd64
@ -314,6 +314,13 @@ MACHINE_START_MEMBER(suna16_state, bssoccer)
|
|||||||
m_bank2->configure_entries(0, 8, memregion("pcm2")->base() + 0x1000, 0x10000);
|
m_bank2->configure_entries(0, 8, memregion("pcm2")->base() + 0x1000, 0x10000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MACHINE_START_MEMBER(suna16_state, sunaq)
|
||||||
|
{
|
||||||
|
m_leds.resolve();
|
||||||
|
|
||||||
|
m_bank1->configure_entries(0, 8, memregion("pcm1")->base() + 0x1000, 0x10000);
|
||||||
|
}
|
||||||
|
|
||||||
/* Bank Switching */
|
/* Bank Switching */
|
||||||
|
|
||||||
void suna16_state::bssoccer_pcm_1_bankswitch_w(uint8_t data)
|
void suna16_state::bssoccer_pcm_1_bankswitch_w(uint8_t data)
|
||||||
@ -942,8 +949,7 @@ void suna16_state::sunaq(machine_config &config)
|
|||||||
|
|
||||||
config.set_maximum_quantum(attotime::from_hz(6000));
|
config.set_maximum_quantum(attotime::from_hz(6000));
|
||||||
|
|
||||||
MCFG_MACHINE_START_OVERRIDE(suna16_state,uballoon)
|
MCFG_MACHINE_START_OVERRIDE(suna16_state, sunaq)
|
||||||
MCFG_MACHINE_RESET_OVERRIDE(suna16_state,uballoon)
|
|
||||||
|
|
||||||
/* video hardware */
|
/* video hardware */
|
||||||
SCREEN(config, m_screen, SCREEN_TYPE_RASTER);
|
SCREEN(config, m_screen, SCREEN_TYPE_RASTER);
|
||||||
|
@ -62,6 +62,7 @@ private:
|
|||||||
virtual void video_start() override;
|
virtual void video_start() override;
|
||||||
DECLARE_MACHINE_START(bestbest);
|
DECLARE_MACHINE_START(bestbest);
|
||||||
DECLARE_MACHINE_START(bssoccer);
|
DECLARE_MACHINE_START(bssoccer);
|
||||||
|
DECLARE_MACHINE_START(sunaq);
|
||||||
DECLARE_MACHINE_START(uballoon);
|
DECLARE_MACHINE_START(uballoon);
|
||||||
DECLARE_MACHINE_RESET(uballoon);
|
DECLARE_MACHINE_RESET(uballoon);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user