Woops (nw)

This commit is contained in:
Olivier Galibert 2020-03-11 21:13:11 +01:00
parent 61c775bb74
commit 6fcded4971
2 changed files with 1 additions and 5 deletions

View File

@ -421,7 +421,7 @@ void k054539_device::write(offs_t offset, u8 data)
case 0x227:
{
attotime period = attotime::from_hz((float)(38 + data) * (clock()/384.0f/14400.0f)) / 2.0f;
logerror("TIMER %02x %g\n", data, (float)(38 + data) * (clock()/384.0f/14400.0f));
m_timer->adjust(period, 0, period);
m_timer_state = 0;

View File

@ -3694,10 +3694,6 @@ ROM_END
MACHINE_START_MEMBER(konamigx_state,konamigx)
{
m_soundcpu->space(AS_PROGRAM).install_write_tap(0x200000, 0x2004ff, "snd", [this](offs_t offset, u16 &data, u16 mem_mask) {
logerror("%10d write %06x %04x %04x\n", machine().time().as_ticks(18432000), offset, data, mem_mask);
});
m_lamp.resolve();
save_item(NAME(m_sound_ctrl));