trunk/src/emu/machine/i8155.c
| r21278 | r21279 | |
| 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)), |
| 205 | 204 | m_command(0), |
| 206 | | m_status(0) |
| 205 | m_status(0), |
| 206 | m_space_config("ram", ENDIANNESS_LITTLE, 8, 8, 0, NULL, *ADDRESS_MAP_NAME(i8155)) |
| 207 | 207 | { |
| 208 | 208 | } |
| 209 | 209 | |