mirror of
https://github.com/holub/mame
synced 2025-04-24 01:11:11 +03:00
(MESS) fixed uninitialized members in src/mess/machine/microdrv.c (nw)
This commit is contained in:
parent
59932eba76
commit
0c265e4744
@ -94,6 +94,10 @@ void microdrive_image_device::device_start()
|
||||
m_bit_timer = timer_alloc();
|
||||
m_bit_timer->adjust(attotime::zero, 0, attotime::from_hz(MDV_BITRATE));
|
||||
m_bit_timer->enable(0);
|
||||
|
||||
m_clk = 0;
|
||||
m_comms_in = 0;
|
||||
m_comms_out = 0;
|
||||
}
|
||||
|
||||
bool microdrive_image_device::call_load()
|
||||
|
Loading…
Reference in New Issue
Block a user