Previous 199869 Revisions Next

r21272 Thursday 21st February, 2013 at 19:20:25 UTC by Oliver Stöneberg
fixed uninitialized members in src/emu/machine/n68681.c (nw)
[src/emu/machine]n68681.c

trunk/src/emu/machine/n68681.c
r21271r21272
492492
493493duart68681_channel::duart68681_channel(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
494494   : device_t(mconfig, DUART68681CHANNEL, "DUART 68681 channel", tag, owner, clock),
495   device_serial_interface(mconfig, *this)
495   device_serial_interface(mconfig, *this),
496   MR1(0),
497   MR2(0),
498   SR(0),
499   rx_fifo_num(0),
500   tx_enabled(0)
496501{
497502}
498503

Previous 199869 Revisions Next


© 1997-2024 The MAME Team