(MESS) fixed uninitialized members in src/mess/machine/microdrv.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-23 10:14:36 +00:00
parent 59932eba76
commit 0c265e4744

View File

@ -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()