gaelco3d.cpp: Do a little less error logging

This commit is contained in:
AJR 2021-03-14 09:31:31 -04:00
parent 0edc5ffb8d
commit e21017d3bb
2 changed files with 2 additions and 1 deletions

View File

@ -675,10 +675,12 @@ void gaelco3d_state::main_map(address_map &map)
map(0x51003c, 0x51003d).portr("IN3");
map(0x510041, 0x510041).w(m_soundlatch, FUNC(generic_latch_8_device::write));
map(0x510042, 0x510043).r(FUNC(gaelco3d_state::sound_status_r));
map(0x510044, 0x510045).nopw(); // unknown (cabinet control?)
map(0x510100, 0x510101).rw(FUNC(gaelco3d_state::eeprom_data_r), FUNC(gaelco3d_state::irq_ack_w));
map(0x510103, 0x510103).r(m_serial, FUNC(gaelco_serial_device::data_r));
map(0x510103, 0x510103).select(0x000038).lw8(NAME([this] (offs_t offset, u8 data) { m_mainlatch->write_d0(offset >> 3, data); }));
map(0x510105, 0x510105).w(m_serial, FUNC(gaelco_serial_device::data_w));
map(0x510106, 0x510107).mirror(0x000070).nopr(); // clr.b instructions do dummy reads
map(0x510107, 0x510107).select(0x000070).lw8(NAME([this] (offs_t offset, u8 data) { m_outlatch->write_d0(offset >> 4, data); }));
map(0xfe0000, 0xfeffff).ram().share("m68k_ram_base16");
}

View File

@ -474,6 +474,5 @@ uint32_t gaelco3d_state::screen_update(screen_device &screen, bitmap_ind16 &bitm
m_video_changed = false;
}
logerror("---update---\n");
return (!ret);
}