mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
fixed uninitialized members in src/emu/machine/i8155.c (nw)
This commit is contained in:
parent
9aa329b30d
commit
b3ebddd166
@ -201,7 +201,9 @@ inline void i8155_device::write_port(int port, UINT8 data)
|
||||
i8155_device::i8155_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: device_t(mconfig, I8155, "Intel 8155", tag, owner, clock),
|
||||
device_memory_interface(mconfig, *this),
|
||||
m_space_config("ram", ENDIANNESS_LITTLE, 8, 8, 0, NULL, *ADDRESS_MAP_NAME(i8155))
|
||||
m_space_config("ram", ENDIANNESS_LITTLE, 8, 8, 0, NULL, *ADDRESS_MAP_NAME(i8155)),
|
||||
m_command(0),
|
||||
m_status(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user