(nw) segas32.cpp: slight cleanup

This commit is contained in:
Vas Crabb 2019-10-12 23:59:33 +11:00
commit 499310b605
3 changed files with 5 additions and 4 deletions

View File

@ -210,11 +210,11 @@ void exedexes_state::machine_reset()
void exedexes_state::exedexes(machine_config &config)
{
/* basic machine hardware */
Z80(config, m_maincpu, 4000000); /* 4 MHz (?) */
Z80(config, m_maincpu, 12_MHz_XTAL / 4); // 3 MHz, verified on PCB
m_maincpu->set_addrmap(AS_PROGRAM, &exedexes_state::exedexes_map);
TIMER(config, "scantimer").configure_scanline(FUNC(exedexes_state::scanline), "screen", 0, 1);
z80_device &audiocpu(Z80(config, "audiocpu", 3000000)); /* 3 MHz ??? */
z80_device &audiocpu(Z80(config, "audiocpu", 12_MHz_XTAL / 4)); // 3 MHz, verified on PCB
audiocpu.set_addrmap(AS_PROGRAM, &exedexes_state::sound_map);
audiocpu.set_periodic_int(FUNC(exedexes_state::irq0_line_hold), attotime::from_hz(4*60));
@ -222,7 +222,7 @@ void exedexes_state::exedexes(machine_config &config)
BUFFERED_SPRITERAM8(config, m_spriteram);
screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
screen.set_refresh_hz(60);
screen.set_refresh_hz(59.60); // verified on PCB
screen.set_vblank_time(ATTOSECONDS_IN_USEC(0));
screen.set_size(32*8, 32*8);
screen.set_visarea(0*8, 32*8-1, 2*8, 30*8-1);

View File

@ -3078,7 +3078,7 @@ ROM_END
* lcd screen with custom segments, 1-bit sound
This is the new wide screen version, there's also a Gold Series version
(MH-06). The both games are using different MCU types so this version seems
(MH-06). The two games are using different MCU types so this version seems
to be a complete rewrite.
***************************************************************************/

View File

@ -5404,6 +5404,7 @@ void segas32_state::segas32_common_init()
uint8_t *Z80 = memregion("soundcpu")->base();
uint32_t size = memregion("soundcpu")->bytes();
m_soundrom_bank->configure_entries(0, size / 0x2000, &Z80[0], 0x2000);
/* reset the custom handlers and other pointers */
m_system32_prot_vblank = nullptr;
m_sw1_output = nullptr;