trunk/src/mess/machine/isa_wdxt_gen.c
| r23681 | r23682 | |
| 62 | 62 | // DEVICE DEFINITIONS |
| 63 | 63 | //************************************************************************** |
| 64 | 64 | |
| 65 | | const device_type WDXT_GEN = &device_creator<wdxt_gen_device>; |
| 65 | const device_type ISA8_WDXT_GEN = &device_creator<wdxt_gen_device>; |
| 66 | 66 | |
| 67 | 67 | |
| 68 | 68 | //------------------------------------------------- |
| r23681 | r23682 | |
| 212 | 212 | //------------------------------------------------- |
| 213 | 213 | |
| 214 | 214 | wdxt_gen_device::wdxt_gen_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 215 | | : device_t(mconfig, WDXT_GEN, "Western Digital WDXT-GEN (Amstrad PC1512/1640)", tag, owner, clock, "wdxt_gen", __FILE__), |
| 215 | : device_t(mconfig, ISA8_WDXT_GEN, "Western Digital WDXT-GEN (Amstrad PC1512/1640)", tag, owner, clock, "wdxt_gen", __FILE__), |
| 216 | 216 | device_isa8_card_interface(mconfig, *this), |
| 217 | 217 | m_maincpu(*this, WD1015_TAG), |
| 218 | 218 | m_host(*this, WD11C00_17_TAG), |
trunk/src/mess/machine/isa_cards.c
| r23681 | r23682 | |
| 20 | 20 | SLOT_INTERFACE("fdc_at", ISA8_FDC_AT) |
| 21 | 21 | SLOT_INTERFACE("fdc_smc", ISA8_FDC_SMC) |
| 22 | 22 | SLOT_INTERFACE("fdc_ps2", ISA8_FDC_PS2) |
| 23 | SLOT_INTERFACE("wdxt_gen", ISA8_WDXT_GEN) |
| 23 | 24 | SLOT_INTERFACE("finalchs", ISA8_FINALCHS) |
| 24 | 25 | SLOT_INTERFACE("hdc", ISA8_HDC) |
| 25 | 26 | SLOT_INTERFACE("adlib", ISA8_ADLIB) |