trunk/src/mess/drivers/imds2.c
r245121 | r245122 | |
128 | 128 | ADDRESS_MAP_END |
129 | 129 | |
130 | 130 | static ADDRESS_MAP_START(kb_io_map , AS_IO , 8 , imds2_state) |
131 | | AM_RANGE(MCS48_PORT_P1 , MCS48_PORT_P1) AM_WRITE(imds2_state::imds2_kb_port_p1_w) |
132 | | AM_RANGE(MCS48_PORT_P2 , MCS48_PORT_P2) AM_READ(imds2_state::imds2_kb_port_p2_r) |
133 | | AM_RANGE(MCS48_PORT_T0 , MCS48_PORT_T0) AM_READ(imds2_state::imds2_kb_port_t0_r) |
134 | | AM_RANGE(MCS48_PORT_T1 , MCS48_PORT_T1) AM_READ(imds2_state::imds2_kb_port_t1_r) |
| 131 | AM_RANGE(MCS48_PORT_P1 , MCS48_PORT_P1) AM_WRITE(imds2_kb_port_p1_w) |
| 132 | AM_RANGE(MCS48_PORT_P2 , MCS48_PORT_P2) AM_READ(imds2_kb_port_p2_r) |
| 133 | AM_RANGE(MCS48_PORT_T0 , MCS48_PORT_T0) AM_READ(imds2_kb_port_t0_r) |
| 134 | AM_RANGE(MCS48_PORT_T1 , MCS48_PORT_T1) AM_READ(imds2_kb_port_t1_r) |
135 | 135 | ADDRESS_MAP_END |
136 | 136 | |
137 | 137 | imds2_state::imds2_state(const machine_config &mconfig, device_type type, const char *tag) |