| Previous | 199869 Revisions | Next |
| r21276 Thursday 21st February, 2013 at 20:04:19 UTC by Oliver Stöneberg |
|---|
| fixed uninitialized members in src/emu/machine/i8155.c (nw) |
| [src/emu/machine] | i8155.c |
| r21275 | r21276 | |
|---|---|---|
| 201 | 201 | i8155_device::i8155_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 202 | 202 | : device_t(mconfig, I8155, "Intel 8155", tag, owner, clock), |
| 203 | 203 | device_memory_interface(mconfig, *this), |
| 204 | m_space_config("ram", ENDIANNESS_LITTLE, 8, 8, 0, NULL, *ADDRESS_MAP_NAME(i8155)) | |
| 204 | m_space_config("ram", ENDIANNESS_LITTLE, 8, 8, 0, NULL, *ADDRESS_MAP_NAME(i8155)), | |
| 205 | m_command(0), | |
| 206 | m_status(0) | |
| 205 | 207 | { |
| 206 | 208 | } |
| 207 | 209 |
| Previous | 199869 Revisions | Next |