summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/svga_trident.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/svga_trident.cpp')
-rw-r--r--src/devices/bus/isa/svga_trident.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/bus/isa/svga_trident.cpp b/src/devices/bus/isa/svga_trident.cpp
index 505737ec8e6..1c7e8cf7074 100644
--- a/src/devices/bus/isa/svga_trident.cpp
+++ b/src/devices/bus/isa/svga_trident.cpp
@@ -23,7 +23,7 @@ ROM_END
// GLOBAL VARIABLES
//**************************************************************************
-const device_type ISA16_SVGA_TGUI9680 = device_creator<isa16_svga_tgui9680_device>;
+DEFINE_DEVICE_TYPE(ISA16_SVGA_TGUI9680, isa16_svga_tgui9680_device, "igui9680", "Trident TGUI9680 Graphics Card (BIOS X5.5 (02) 02/13/96)")
static MACHINE_CONFIG_FRAGMENT( vga_trident )
@@ -64,8 +64,9 @@ const tiny_rom_entry *isa16_svga_tgui9680_device::device_rom_region() const
//-------------------------------------------------
isa16_svga_tgui9680_device::isa16_svga_tgui9680_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, ISA16_SVGA_TGUI9680, "Trident TGUI9680 Graphics Card (BIOS X5.5 (02) 02/13/96)", tag, owner, clock, "tgui9680", __FILE__),
- device_isa16_card_interface(mconfig, *this), m_vga(nullptr)
+ device_t(mconfig, ISA16_SVGA_TGUI9680, tag, owner, clock),
+ device_isa16_card_interface(mconfig, *this),
+ m_vga(nullptr)
{
}