(MESS) pc1512: Fixed regression. (nw)

This commit is contained in:
Curt Coder 2013-06-13 19:16:51 +00:00
parent 0a393d4f5c
commit d603bdca22
3 changed files with 6 additions and 5 deletions

View File

@ -20,6 +20,7 @@ SLOT_INTERFACE_START( pc_isa8_cards )
SLOT_INTERFACE("fdc_at", ISA8_FDC_AT) SLOT_INTERFACE("fdc_at", ISA8_FDC_AT)
SLOT_INTERFACE("fdc_smc", ISA8_FDC_SMC) SLOT_INTERFACE("fdc_smc", ISA8_FDC_SMC)
SLOT_INTERFACE("fdc_ps2", ISA8_FDC_PS2) SLOT_INTERFACE("fdc_ps2", ISA8_FDC_PS2)
SLOT_INTERFACE("wdxt_gen", ISA8_WDXT_GEN)
SLOT_INTERFACE("finalchs", ISA8_FINALCHS) SLOT_INTERFACE("finalchs", ISA8_FINALCHS)
SLOT_INTERFACE("hdc", ISA8_HDC) SLOT_INTERFACE("hdc", ISA8_HDC)
SLOT_INTERFACE("adlib", ISA8_ADLIB) SLOT_INTERFACE("adlib", ISA8_ADLIB)

View File

@ -62,7 +62,7 @@ Notes:
// DEVICE DEFINITIONS // DEVICE DEFINITIONS
//************************************************************************** //**************************************************************************
const device_type WDXT_GEN = &device_creator<wdxt_gen_device>; const device_type ISA8_WDXT_GEN = &device_creator<wdxt_gen_device>;
//------------------------------------------------- //-------------------------------------------------
@ -212,7 +212,7 @@ machine_config_constructor wdxt_gen_device::device_mconfig_additions() const
//------------------------------------------------- //-------------------------------------------------
wdxt_gen_device::wdxt_gen_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) wdxt_gen_device::wdxt_gen_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, WDXT_GEN, "Western Digital WDXT-GEN (Amstrad PC1512/1640)", tag, owner, clock, "wdxt_gen", __FILE__), : device_t(mconfig, ISA8_WDXT_GEN, "Western Digital WDXT-GEN (Amstrad PC1512/1640)", tag, owner, clock, "wdxt_gen", __FILE__),
device_isa8_card_interface(mconfig, *this), device_isa8_card_interface(mconfig, *this),
m_maincpu(*this, WD1015_TAG), m_maincpu(*this, WD1015_TAG),
m_host(*this, WD11C00_17_TAG), m_host(*this, WD11C00_17_TAG),

View File

@ -16,8 +16,8 @@
#pragma once #pragma once
#ifndef __WDXT_GEN__ #ifndef __ISA8_WDXT_GEN__
#define __WDXT_GEN__ #define __ISA8_WDXT_GEN__
#include "emu.h" #include "emu.h"
@ -81,6 +81,6 @@ private:
// device type definition // device type definition
extern const device_type WDXT_GEN; extern const device_type ISA8_WDXT_GEN;
#endif #endif