equites.cpp, zaxxon.cpp: Fixes for recent regressions (nw)

This commit is contained in:
AJR 2018-08-12 15:25:14 -04:00
parent 708d928214
commit 6c44ac82c2
2 changed files with 7 additions and 7 deletions

View File

@ -1161,9 +1161,9 @@ MACHINE_CONFIG_START(equites_state::equites)
MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", equites_state, equites_scanline, "screen", 0, 1)
LS259(config, m_mainlatch);
m_mainlatch->q_out_cb<0>().set(FUNC(equites_state::flip_screen_w));
m_mainlatch->q_out_cb<1>().set(FUNC(equites_state::mcu_start_w));
m_mainlatch->q_out_cb<2>().set(FUNC(equites_state::mcu_switch_w));
m_mainlatch->q_out_cb<1>().set(FUNC(equites_state::flip_screen_w));
m_mainlatch->q_out_cb<2>().set(FUNC(equites_state::mcu_start_w));
m_mainlatch->q_out_cb<3>().set(FUNC(equites_state::mcu_switch_w));
common_sound(config);

View File

@ -1050,10 +1050,10 @@ MACHINE_CONFIG_START(zaxxon_state::congo)
m_mainlatch[0]->q_out_cb<7>().set(FUNC(zaxxon_state::int_enable_w)); // INTON
// U53 on Control Board
m_mainlatch[0]->q_out_cb<0>().set_nop(); // not used
m_mainlatch[0]->q_out_cb<3>().set(FUNC(zaxxon_state::bg_color_w)); // CREF 3
m_mainlatch[0]->q_out_cb<6>().set(FUNC(zaxxon_state::congo_fg_bank_w)); // BS
m_mainlatch[0]->q_out_cb<7>().set(FUNC(zaxxon_state::congo_color_bank_w)); // CBS
m_mainlatch[1]->q_out_cb<0>().set_nop(); // not used
m_mainlatch[1]->q_out_cb<3>().set(FUNC(zaxxon_state::bg_color_w)); // CREF 3
m_mainlatch[1]->q_out_cb<6>().set(FUNC(zaxxon_state::congo_fg_bank_w)); // BS
m_mainlatch[1]->q_out_cb<7>().set(FUNC(zaxxon_state::congo_color_bank_w)); // CBS
MCFG_DEVICE_ADD("audiocpu", Z80, SOUND_CLOCK)
MCFG_DEVICE_PROGRAM_MAP(congo_sound_map)