summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/emu/machine/7474.c2
-rw-r--r--src/emu/machine/i8155.c2
-rw-r--r--src/emu/machine/i8255.c2
-rw-r--r--src/emu/machine/i8279.c2
-rw-r--r--src/emu/machine/m6m80011ap.c2
-rw-r--r--src/emu/machine/pic8259.c2
-rw-r--r--src/emu/machine/pit8253.c4
-rw-r--r--src/emu/machine/tms9902.c2
-rw-r--r--src/emu/machine/x2212.c2
-rw-r--r--src/emu/machine/x76f041.c2
-rw-r--r--src/emu/machine/x76f100.c2
-rw-r--r--src/emu/machine/z80ctc.c2
-rw-r--r--src/emu/machine/z80dma.c2
-rw-r--r--src/emu/machine/z80pio.c2
-rw-r--r--src/emu/machine/z80sio.c2
-rw-r--r--src/emu/video/hd61830.c2
-rw-r--r--src/emu/video/pc_vga.c8
-rw-r--r--src/emu/video/tms34061.c2
-rw-r--r--src/emu/video/tms9927.c2
-rw-r--r--src/emu/video/tms9928a.c2
-rw-r--r--src/emu/video/tms9928a.h4
21 files changed, 26 insertions, 26 deletions
diff --git a/src/emu/machine/7474.c b/src/emu/machine/7474.c
index 9876e8f9e20..7c3cfb1c6eb 100644
--- a/src/emu/machine/7474.c
+++ b/src/emu/machine/7474.c
@@ -54,7 +54,7 @@ const device_type TTL7474 = &device_creator<ttl7474_device>;
//-------------------------------------------------
ttl7474_device::ttl7474_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, TTL7474, "7474", tag, owner, clock, "7474", __FILE__),
+ : device_t(mconfig, TTL7474, "7474 TTL", tag, owner, clock, "7474", __FILE__),
m_output_func(*this),
m_comp_output_func(*this)
{
diff --git a/src/emu/machine/i8155.c b/src/emu/machine/i8155.c
index 6e13fb81ffb..e6dce5c86f4 100644
--- a/src/emu/machine/i8155.c
+++ b/src/emu/machine/i8155.c
@@ -201,7 +201,7 @@ inline void i8155_device::write_port(int port, UINT8 data)
//-------------------------------------------------
i8155_device::i8155_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, I8155, "Intel 8155", tag, owner, clock, "i8155", __FILE__),
+ : device_t(mconfig, I8155, "8155 RIOT", tag, owner, clock, "i8155", __FILE__),
device_memory_interface(mconfig, *this),
m_command(0),
m_status(0),
diff --git a/src/emu/machine/i8255.c b/src/emu/machine/i8255.c
index 2f9892ac04c..609ca963e1f 100644
--- a/src/emu/machine/i8255.c
+++ b/src/emu/machine/i8255.c
@@ -262,7 +262,7 @@ inline int i8255_device::port_c_upper_mode()
//-------------------------------------------------
i8255_device::i8255_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, I8255, "Intel 8255", tag, owner, clock, "i8255", __FILE__)
+ : device_t(mconfig, I8255, "8255 PPI", tag, owner, clock, "i8255", __FILE__)
{
m_intr[PORT_A] = m_intr[PORT_B] = 0;
m_control = 0;
diff --git a/src/emu/machine/i8279.c b/src/emu/machine/i8279.c
index 14367283bc3..c2dcc22b078 100644
--- a/src/emu/machine/i8279.c
+++ b/src/emu/machine/i8279.c
@@ -88,7 +88,7 @@ const device_type I8279 = &device_creator<i8279_device>;
//-------------------------------------------------
i8279_device::i8279_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, I8279, "Intel 8279", tag, owner, clock, "i8279", __FILE__)
+ : device_t(mconfig, I8279, "8279 KDC", tag, owner, clock, "i8279", __FILE__)
{
}
diff --git a/src/emu/machine/m6m80011ap.c b/src/emu/machine/m6m80011ap.c
index d47a550fe95..07ec91e3dad 100644
--- a/src/emu/machine/m6m80011ap.c
+++ b/src/emu/machine/m6m80011ap.c
@@ -26,7 +26,7 @@ const device_type M6M80011AP = &device_creator<m6m80011ap_device>;
//-------------------------------------------------
m6m80011ap_device::m6m80011ap_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, M6M80011AP, "m6m80011ap", tag, owner, clock, "m6m80011ap", __FILE__),
+ : device_t(mconfig, M6M80011AP, "M6M80011AP EEPROM", tag, owner, clock, "m6m80011ap", __FILE__),
device_nvram_interface(mconfig, *this)
{
}
diff --git a/src/emu/machine/pic8259.c b/src/emu/machine/pic8259.c
index 53482ffad82..0b78ac0c05b 100644
--- a/src/emu/machine/pic8259.c
+++ b/src/emu/machine/pic8259.c
@@ -441,7 +441,7 @@ void pic8259_device::device_reset()
const device_type PIC8259 = &device_creator<pic8259_device>;
pic8259_device::pic8259_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, PIC8259, "Intel PIC8259", tag, owner, clock, "pit8259", __FILE__)
+ : device_t(mconfig, PIC8259, "8259 PIC", tag, owner, clock, "pit8259", __FILE__)
, m_out_int_func(*this)
, m_sp_en_func(*this)
, m_read_slave_ack_func(*this)
diff --git a/src/emu/machine/pit8253.c b/src/emu/machine/pit8253.c
index 31baaaca03f..b80ccfcaf58 100644
--- a/src/emu/machine/pit8253.c
+++ b/src/emu/machine/pit8253.c
@@ -48,7 +48,7 @@ const device_type PIT8253 = &device_creator<pit8253_device>;
pit8253_device::pit8253_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- device_t(mconfig, PIT8253, "Intel PIT8253", tag, owner, clock, "pit8253", __FILE__),
+ device_t(mconfig, PIT8253, "8253 PIT", tag, owner, clock, "pit8253", __FILE__),
m_clk0(0),
m_clk1(0),
m_clk2(0),
@@ -79,7 +79,7 @@ pit8253_device::pit8253_device(const machine_config &mconfig, device_type type,
const device_type PIT8254 = &device_creator<pit8254_device>;
pit8254_device::pit8254_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : pit8253_device(mconfig, PIT8254, "Intel PIT8254", tag, owner, clock, "pit8254", __FILE__)
+ : pit8253_device(mconfig, PIT8254, "8254 PIT", tag, owner, clock, "pit8254", __FILE__)
{
}
diff --git a/src/emu/machine/tms9902.c b/src/emu/machine/tms9902.c
index 3eaed05011f..a208beefb0d 100644
--- a/src/emu/machine/tms9902.c
+++ b/src/emu/machine/tms9902.c
@@ -61,7 +61,7 @@ enum
Constructor
*/
tms9902_device::tms9902_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
-: device_t(mconfig, TMS9902, "TMS9902 Asynchronous Communication Controller", tag, owner, clock, "tms9902", __FILE__)
+: device_t(mconfig, TMS9902, "TMS9902 ACC", tag, owner, clock, "tms9902", __FILE__)
{
}
diff --git a/src/emu/machine/x2212.c b/src/emu/machine/x2212.c
index 843ffb408c9..31e1b47588a 100644
--- a/src/emu/machine/x2212.c
+++ b/src/emu/machine/x2212.c
@@ -37,7 +37,7 @@ const device_type X2210 = &device_creator<x2210_device>;
//-------------------------------------------------
x2212_device::x2212_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, X2212, "X2212", tag, owner, clock, "x2212", __FILE__),
+ : device_t(mconfig, X2212, "X2212 NVRAM", tag, owner, clock, "x2212", __FILE__),
device_memory_interface(mconfig, *this),
device_nvram_interface(mconfig, *this),
m_auto_save(false),
diff --git a/src/emu/machine/x76f041.c b/src/emu/machine/x76f041.c
index 7be379c4c04..caa678709e9 100644
--- a/src/emu/machine/x76f041.c
+++ b/src/emu/machine/x76f041.c
@@ -35,7 +35,7 @@ inline void ATTR_PRINTF( 3, 4 ) x76f041_device::verboselog( int n_level, const c
const device_type X76F041 = &device_creator<x76f041_device>;
x76f041_device::x76f041_device( const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock )
- : device_t( mconfig, X76F041, "X76F041", tag, owner, clock, "x76f041", __FILE__ ),
+ : device_t( mconfig, X76F041, "X76F041 Flash", tag, owner, clock, "x76f041", __FILE__ ),
device_nvram_interface(mconfig, *this),
m_cs( 0 ),
m_rst( 0 ),
diff --git a/src/emu/machine/x76f100.c b/src/emu/machine/x76f100.c
index 2ed9f47a017..2d249ab4312 100644
--- a/src/emu/machine/x76f100.c
+++ b/src/emu/machine/x76f100.c
@@ -33,7 +33,7 @@ inline void ATTR_PRINTF( 3, 4 ) x76f100_device::verboselog( int n_level, const c
const device_type X76F100 = &device_creator<x76f100_device>;
x76f100_device::x76f100_device( const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock )
- : device_t( mconfig, X76F100, "X76F100", tag, owner, clock, "x76f100", __FILE__ ),
+ : device_t( mconfig, X76F100, "X76F100 Flash", tag, owner, clock, "x76f100", __FILE__ ),
device_nvram_interface(mconfig, *this),
m_cs( 0 ),
m_rst( 0 ),
diff --git a/src/emu/machine/z80ctc.c b/src/emu/machine/z80ctc.c
index 40a529119ca..0e5b4c4cca3 100644
--- a/src/emu/machine/z80ctc.c
+++ b/src/emu/machine/z80ctc.c
@@ -80,7 +80,7 @@ const device_type Z80CTC = &device_creator<z80ctc_device>;
//-------------------------------------------------
z80ctc_device::z80ctc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, Z80CTC, "Zilog Z80 CTC", tag, owner, clock, "z80ctc", __FILE__),
+ : device_t(mconfig, Z80CTC, "Z80 CTC", tag, owner, clock, "z80ctc", __FILE__),
device_z80daisy_interface(mconfig, *this)
{
}
diff --git a/src/emu/machine/z80dma.c b/src/emu/machine/z80dma.c
index 03dfc297566..342ae1ea560 100644
--- a/src/emu/machine/z80dma.c
+++ b/src/emu/machine/z80dma.c
@@ -145,7 +145,7 @@ const device_type Z80DMA = &device_creator<z80dma_device>;
//-------------------------------------------------
z80dma_device::z80dma_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, Z80DMA, "Z8410", tag, owner, clock, "z80dma", __FILE__),
+ : device_t(mconfig, Z80DMA, "Z8410 DMA", tag, owner, clock, "z80dma", __FILE__),
device_z80daisy_interface(mconfig, *this)
{
}
diff --git a/src/emu/machine/z80pio.c b/src/emu/machine/z80pio.c
index b0cbeaf7262..76ae3299192 100644
--- a/src/emu/machine/z80pio.c
+++ b/src/emu/machine/z80pio.c
@@ -58,7 +58,7 @@ const device_type Z80PIO = &device_creator<z80pio_device>;
//-------------------------------------------------
z80pio_device::z80pio_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, Z80PIO, "Z8420", tag, owner, clock, "z80pio", __FILE__),
+ : device_t(mconfig, Z80PIO, "Z8420 PIO", tag, owner, clock, "z80pio", __FILE__),
device_z80daisy_interface(mconfig, *this)
{
}
diff --git a/src/emu/machine/z80sio.c b/src/emu/machine/z80sio.c
index 75a4a591e94..d44587997af 100644
--- a/src/emu/machine/z80sio.c
+++ b/src/emu/machine/z80sio.c
@@ -298,7 +298,7 @@ inline attotime z80sio_device::sio_channel::compute_time_per_character()
//-------------------------------------------------
z80sio_device::z80sio_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, Z80SIO, "Zilog Z80 SIO", tag, owner, clock, "z80sio", __FILE__),
+ : device_t(mconfig, Z80SIO, "Z80 SIO", tag, owner, clock, "z80sio", __FILE__),
device_z80daisy_interface(mconfig, *this)
{
for (int i = 0; i < 8; i++)
diff --git a/src/emu/video/hd61830.c b/src/emu/video/hd61830.c
index eff9163a48a..0bfa17a8f26 100644
--- a/src/emu/video/hd61830.c
+++ b/src/emu/video/hd61830.c
@@ -99,7 +99,7 @@ inline void hd61830_device::writebyte(offs_t address, UINT8 data)
//-------------------------------------------------
hd61830_device::hd61830_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- device_t(mconfig, HD61830, "Hitachi HD61830", tag, owner, clock, "hd61830", __FILE__),
+ device_t(mconfig, HD61830, "HD61830 LCDC", tag, owner, clock, "hd61830", __FILE__),
device_memory_interface(mconfig, *this),
device_video_interface(mconfig, *this),
m_read_rd(*this),
diff --git a/src/emu/video/pc_vga.c b/src/emu/video/pc_vga.c
index a3a29a847c8..cdd6e19a185 100644
--- a/src/emu/video/pc_vga.c
+++ b/src/emu/video/pc_vga.c
@@ -144,17 +144,17 @@ svga_device::svga_device(const machine_config &mconfig, device_type type, const
}
tseng_vga_device::tseng_vga_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : svga_device(mconfig, TSENG_VGA, "TSENG_VGA", tag, owner, clock, "tseng_vga", __FILE__)
+ : svga_device(mconfig, TSENG_VGA, "TSENG LABS VGA", tag, owner, clock, "tseng_vga", __FILE__)
{
}
trident_vga_device::trident_vga_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : svga_device(mconfig, TRIDENT_VGA, "TRIDENT_VGA", tag, owner, clock, "trident_vga", __FILE__)
+ : svga_device(mconfig, TRIDENT_VGA, "Trident VGA", tag, owner, clock, "trident_vga", __FILE__)
{
}
s3_vga_device::s3_vga_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : ati_vga_device(mconfig, S3_VGA, "S3_VGA", tag, owner, clock, "s3_vga", __FILE__)
+ : ati_vga_device(mconfig, S3_VGA, "S3 Graphics VGA", tag, owner, clock, "s3_vga", __FILE__)
{
}
@@ -169,7 +169,7 @@ gamtor_vga_device::gamtor_vga_device(const machine_config &mconfig, const char *
}
ati_vga_device::ati_vga_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : svga_device(mconfig, ATI_VGA, "ATI_VGA", tag, owner, clock, "ati_vga", __FILE__)
+ : svga_device(mconfig, ATI_VGA, "ATI VGA", tag, owner, clock, "ati_vga", __FILE__)
{
}
diff --git a/src/emu/video/tms34061.c b/src/emu/video/tms34061.c
index 86cc7f4260d..27e75ff67f2 100644
--- a/src/emu/video/tms34061.c
+++ b/src/emu/video/tms34061.c
@@ -28,7 +28,7 @@
const device_type TMS34061 = &device_creator<tms34061_device>;
tms34061_device::tms34061_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, TMS34061, "tms34061", tag, owner, clock, "tms34061", __FILE__),
+ : device_t(mconfig, TMS34061, "TMS34061 VSC", tag, owner, clock, "tms34061", __FILE__),
device_video_interface(mconfig, *this),
m_rowshift(0),
m_vramsize(0),
diff --git a/src/emu/video/tms9927.c b/src/emu/video/tms9927.c
index 59d3b05b4d8..4dd20217a86 100644
--- a/src/emu/video/tms9927.c
+++ b/src/emu/video/tms9927.c
@@ -36,7 +36,7 @@ const device_type CRT5037 = &device_creator<crt5037_device>;
const device_type CRT5057 = &device_creator<crt5057_device>;
tms9927_device::tms9927_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, TMS9927, "TMS9927", tag, owner, clock, "tms9927", __FILE__),
+ : device_t(mconfig, TMS9927, "TMS9927 VTC", tag, owner, clock, "tms9927", __FILE__),
device_video_interface(mconfig, *this),
m_write_vsyn(*this)
{
diff --git a/src/emu/video/tms9928a.c b/src/emu/video/tms9928a.c
index 366d4c2ee37..6dfccde4339 100644
--- a/src/emu/video/tms9928a.c
+++ b/src/emu/video/tms9928a.c
@@ -66,7 +66,7 @@ tms9928a_device::tms9928a_device( const machine_config &mconfig, device_type typ
tms9928a_device::tms9928a_device( const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock )
- : device_t( mconfig, TMS9928A, "TMS9928A", tag, owner, clock, "tms9928a", __FILE__),
+ : device_t( mconfig, TMS9928A, "TMS9928A VDP", tag, owner, clock, "tms9928a", __FILE__),
device_memory_interface(mconfig, *this),
device_video_interface(mconfig, *this),
m_space_config("vram",ENDIANNESS_BIG, 8, 14, 0, NULL, *ADDRESS_MAP_NAME(memmap))
diff --git a/src/emu/video/tms9928a.h b/src/emu/video/tms9928a.h
index aa5d72a6f68..b89fadd7424 100644
--- a/src/emu/video/tms9928a.h
+++ b/src/emu/video/tms9928a.h
@@ -179,7 +179,7 @@ class tms9118_device : public tms9928a_device
{
public:
tms9118_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : tms9928a_device( mconfig, TMS9118, "TMS9118", tag, owner, clock, false, true, false, "tms9118", __FILE__) { }
+ : tms9928a_device( mconfig, TMS9118, "TMS9118 VDP", tag, owner, clock, false, true, false, "tms9118", __FILE__) { }
};
@@ -187,7 +187,7 @@ class tms9128_device : public tms9928a_device
{
public:
tms9128_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : tms9928a_device( mconfig, TMS9128, "TMS9128", tag, owner, clock, false, true, false, "tms9128", __FILE__) { }
+ : tms9928a_device( mconfig, TMS9128, "TMS9128 VDP", tag, owner, clock, false, true, false, "tms9128", __FILE__) { }
};