mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
tv955kb: Register reset control inputs as inactive on startup
This commit is contained in:
parent
908ba5597a
commit
490147d3d8
@ -43,6 +43,11 @@ void tv955kb_device::device_start()
|
||||
m_bell_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(tv955kb_device::bell_q8), this));
|
||||
|
||||
save_item(NAME(m_bell_on));
|
||||
|
||||
// Hack to avoid starting up in wrong state
|
||||
auto &resetctl = *subdevice<input_merger_device>("resetctl");
|
||||
resetctl.in_w<0>(1);
|
||||
resetctl.in_w<1>(1);
|
||||
}
|
||||
|
||||
void tv955kb_device::device_reset()
|
||||
|
Loading…
Reference in New Issue
Block a user