Previous 199869 Revisions Next

r23682 Thursday 13th June, 2013 at 19:16:51 UTC by Curt Coder
(MESS) pc1512: Fixed regression. (nw)
[src/mess/machine]isa_cards.c isa_wdxt_gen.c isa_wdxt_gen.h

trunk/src/mess/machine/isa_wdxt_gen.c
r23681r23682
6262//  DEVICE DEFINITIONS
6363//**************************************************************************
6464
65const device_type WDXT_GEN = &device_creator<wdxt_gen_device>;
65const device_type ISA8_WDXT_GEN = &device_creator<wdxt_gen_device>;
6666
6767
6868//-------------------------------------------------
r23681r23682
212212//-------------------------------------------------
213213
214214wdxt_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__),
216216      device_isa8_card_interface(mconfig, *this),
217217      m_maincpu(*this, WD1015_TAG),
218218      m_host(*this, WD11C00_17_TAG),
trunk/src/mess/machine/isa_wdxt_gen.h
r23681r23682
1616
1717#pragma once
1818
19#ifndef __WDXT_GEN__
20#define __WDXT_GEN__
19#ifndef __ISA8_WDXT_GEN__
20#define __ISA8_WDXT_GEN__
2121
2222
2323#include "emu.h"
r23681r23682
8181
8282
8383// device type definition
84extern const device_type WDXT_GEN;
84extern const device_type ISA8_WDXT_GEN;
8585
8686#endif
trunk/src/mess/machine/isa_cards.c
r23681r23682
2020   SLOT_INTERFACE("fdc_at", ISA8_FDC_AT)
2121   SLOT_INTERFACE("fdc_smc", ISA8_FDC_SMC)
2222   SLOT_INTERFACE("fdc_ps2", ISA8_FDC_PS2)
23   SLOT_INTERFACE("wdxt_gen", ISA8_WDXT_GEN)
2324   SLOT_INTERFACE("finalchs", ISA8_FINALCHS)
2425   SLOT_INTERFACE("hdc", ISA8_HDC)
2526   SLOT_INTERFACE("adlib", ISA8_ADLIB)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team