trunk/src/mess/drivers/bw12.c
| r18283 | r18284 | |
| 543 | 543 | |
| 544 | 544 | WRITE_LINE_MEMBER(bw12_state::pit_out0_w) |
| 545 | 545 | { |
| 546 | | device_t *device = machine().device(Z80SIO_TAG); |
| 547 | | z80dart_txca_w(device, state); |
| 548 | | z80dart_rxca_w(device, state); |
| 546 | z80dart_txca_w(m_sio, state); |
| 547 | z80dart_rxca_w(m_sio, state); |
| 549 | 548 | } |
| 550 | 549 | |
| 551 | 550 | WRITE_LINE_MEMBER( bw12_state::pit_out2_w ) |
trunk/src/mess/includes/bw12.h
| r18283 | r18284 | |
| 25 | 25 | : driver_device(mconfig, type, tag), |
| 26 | 26 | m_maincpu(*this, Z80_TAG), |
| 27 | 27 | m_pia(*this, PIA6821_TAG), |
| 28 | m_sio(*this, Z80SIO_TAG), |
| 28 | 29 | m_fdc(*this, UPD765_TAG), |
| 29 | 30 | m_kbc(*this, AY3600PRO002_TAG), |
| 30 | 31 | m_crtc(*this, MC6845_TAG), |
| r18283 | r18284 | |
| 38 | 39 | |
| 39 | 40 | required_device<cpu_device> m_maincpu; |
| 40 | 41 | required_device<pia6821_device> m_pia; |
| 42 | required_device<z80dart_device> m_sio; |
| 41 | 43 | required_device<device_t> m_fdc; |
| 42 | 44 | required_device<ay3600_device> m_kbc; |
| 43 | 45 | required_device<mc6845_device> m_crtc; |