trunk/src/emu/video/pc_vga.c
| r29401 | r29402 | |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | tseng_vga_device::tseng_vga_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 147 | | : svga_device(mconfig, TSENG_VGA, "TSENG_VGA", tag, owner, clock, "tseng_vga", __FILE__) |
| 147 | : svga_device(mconfig, TSENG_VGA, "TSENG LABS VGA", tag, owner, clock, "tseng_vga", __FILE__) |
| 148 | 148 | { |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | trident_vga_device::trident_vga_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 152 | | : svga_device(mconfig, TRIDENT_VGA, "TRIDENT_VGA", tag, owner, clock, "trident_vga", __FILE__) |
| 152 | : svga_device(mconfig, TRIDENT_VGA, "Trident VGA", tag, owner, clock, "trident_vga", __FILE__) |
| 153 | 153 | { |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | s3_vga_device::s3_vga_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 157 | | : ati_vga_device(mconfig, S3_VGA, "S3_VGA", tag, owner, clock, "s3_vga", __FILE__) |
| 157 | : ati_vga_device(mconfig, S3_VGA, "S3 Graphics VGA", tag, owner, clock, "s3_vga", __FILE__) |
| 158 | 158 | { |
| 159 | 159 | } |
| 160 | 160 | |
| r29401 | r29402 | |
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | ati_vga_device::ati_vga_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 172 | | : svga_device(mconfig, ATI_VGA, "ATI_VGA", tag, owner, clock, "ati_vga", __FILE__) |
| 172 | : svga_device(mconfig, ATI_VGA, "ATI VGA", tag, owner, clock, "ati_vga", __FILE__) |
| 173 | 173 | { |
| 174 | 174 | } |
| 175 | 175 | |
trunk/src/emu/video/tms9928a.c
| r29401 | r29402 | |
| 66 | 66 | |
| 67 | 67 | |
| 68 | 68 | tms9928a_device::tms9928a_device( const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock ) |
| 69 | | : device_t( mconfig, TMS9928A, "TMS9928A", tag, owner, clock, "tms9928a", __FILE__), |
| 69 | : device_t( mconfig, TMS9928A, "TMS9928A VDP", tag, owner, clock, "tms9928a", __FILE__), |
| 70 | 70 | device_memory_interface(mconfig, *this), |
| 71 | 71 | device_video_interface(mconfig, *this), |
| 72 | 72 | m_space_config("vram",ENDIANNESS_BIG, 8, 14, 0, NULL, *ADDRESS_MAP_NAME(memmap)) |
trunk/src/emu/video/tms9928a.h
| r29401 | r29402 | |
| 179 | 179 | { |
| 180 | 180 | public: |
| 181 | 181 | tms9118_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 182 | | : tms9928a_device( mconfig, TMS9118, "TMS9118", tag, owner, clock, false, true, false, "tms9118", __FILE__) { } |
| 182 | : tms9928a_device( mconfig, TMS9118, "TMS9118 VDP", tag, owner, clock, false, true, false, "tms9118", __FILE__) { } |
| 183 | 183 | }; |
| 184 | 184 | |
| 185 | 185 | |
| r29401 | r29402 | |
| 187 | 187 | { |
| 188 | 188 | public: |
| 189 | 189 | tms9128_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 190 | | : tms9928a_device( mconfig, TMS9128, "TMS9128", tag, owner, clock, false, true, false, "tms9128", __FILE__) { } |
| 190 | : tms9928a_device( mconfig, TMS9128, "TMS9128 VDP", tag, owner, clock, false, true, false, "tms9128", __FILE__) { } |
| 191 | 191 | }; |
| 192 | 192 | |
| 193 | 193 | |
trunk/src/emu/video/tms9927.c
| r29401 | r29402 | |
| 36 | 36 | const device_type CRT5057 = &device_creator<crt5057_device>; |
| 37 | 37 | |
| 38 | 38 | tms9927_device::tms9927_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 39 | | : device_t(mconfig, TMS9927, "TMS9927", tag, owner, clock, "tms9927", __FILE__), |
| 39 | : device_t(mconfig, TMS9927, "TMS9927 VTC", tag, owner, clock, "tms9927", __FILE__), |
| 40 | 40 | device_video_interface(mconfig, *this), |
| 41 | 41 | m_write_vsyn(*this) |
| 42 | 42 | { |
trunk/src/emu/video/hd61830.c
| r29401 | r29402 | |
| 99 | 99 | //------------------------------------------------- |
| 100 | 100 | |
| 101 | 101 | hd61830_device::hd61830_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : |
| 102 | | device_t(mconfig, HD61830, "Hitachi HD61830", tag, owner, clock, "hd61830", __FILE__), |
| 102 | device_t(mconfig, HD61830, "HD61830 LCDC", tag, owner, clock, "hd61830", __FILE__), |
| 103 | 103 | device_memory_interface(mconfig, *this), |
| 104 | 104 | device_video_interface(mconfig, *this), |
| 105 | 105 | m_read_rd(*this), |
trunk/src/emu/video/tms34061.c
| r29401 | r29402 | |
| 28 | 28 | const device_type TMS34061 = &device_creator<tms34061_device>; |
| 29 | 29 | |
| 30 | 30 | tms34061_device::tms34061_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 31 | | : device_t(mconfig, TMS34061, "tms34061", tag, owner, clock, "tms34061", __FILE__), |
| 31 | : device_t(mconfig, TMS34061, "TMS34061 VSC", tag, owner, clock, "tms34061", __FILE__), |
| 32 | 32 | device_video_interface(mconfig, *this), |
| 33 | 33 | m_rowshift(0), |
| 34 | 34 | m_vramsize(0), |
trunk/src/emu/machine/x76f041.c
| r29401 | r29402 | |
| 35 | 35 | const device_type X76F041 = &device_creator<x76f041_device>; |
| 36 | 36 | |
| 37 | 37 | x76f041_device::x76f041_device( const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock ) |
| 38 | | : device_t( mconfig, X76F041, "X76F041", tag, owner, clock, "x76f041", __FILE__ ), |
| 38 | : device_t( mconfig, X76F041, "X76F041 Flash", tag, owner, clock, "x76f041", __FILE__ ), |
| 39 | 39 | device_nvram_interface(mconfig, *this), |
| 40 | 40 | m_cs( 0 ), |
| 41 | 41 | m_rst( 0 ), |
trunk/src/emu/machine/z80dma.c
| r29401 | r29402 | |
| 145 | 145 | //------------------------------------------------- |
| 146 | 146 | |
| 147 | 147 | z80dma_device::z80dma_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 148 | | : device_t(mconfig, Z80DMA, "Z8410", tag, owner, clock, "z80dma", __FILE__), |
| 148 | : device_t(mconfig, Z80DMA, "Z8410 DMA", tag, owner, clock, "z80dma", __FILE__), |
| 149 | 149 | device_z80daisy_interface(mconfig, *this) |
| 150 | 150 | { |
| 151 | 151 | } |
trunk/src/emu/machine/z80pio.c
| r29401 | r29402 | |
| 58 | 58 | //------------------------------------------------- |
| 59 | 59 | |
| 60 | 60 | z80pio_device::z80pio_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 61 | | : device_t(mconfig, Z80PIO, "Z8420", tag, owner, clock, "z80pio", __FILE__), |
| 61 | : device_t(mconfig, Z80PIO, "Z8420 PIO", tag, owner, clock, "z80pio", __FILE__), |
| 62 | 62 | device_z80daisy_interface(mconfig, *this) |
| 63 | 63 | { |
| 64 | 64 | } |
trunk/src/emu/machine/pic8259.c
| r29401 | r29402 | |
| 441 | 441 | const device_type PIC8259 = &device_creator<pic8259_device>; |
| 442 | 442 | |
| 443 | 443 | pic8259_device::pic8259_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 444 | | : device_t(mconfig, PIC8259, "Intel PIC8259", tag, owner, clock, "pit8259", __FILE__) |
| 444 | : device_t(mconfig, PIC8259, "8259 PIC", tag, owner, clock, "pit8259", __FILE__) |
| 445 | 445 | , m_out_int_func(*this) |
| 446 | 446 | , m_sp_en_func(*this) |
| 447 | 447 | , m_read_slave_ack_func(*this) |
trunk/src/emu/machine/tms9902.c
| r29401 | r29402 | |
| 61 | 61 | Constructor |
| 62 | 62 | */ |
| 63 | 63 | tms9902_device::tms9902_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 64 | | : device_t(mconfig, TMS9902, "TMS9902 Asynchronous Communication Controller", tag, owner, clock, "tms9902", __FILE__) |
| 64 | : device_t(mconfig, TMS9902, "TMS9902 ACC", tag, owner, clock, "tms9902", __FILE__) |
| 65 | 65 | { |
| 66 | 66 | } |
| 67 | 67 | |
trunk/src/emu/machine/x76f100.c
| r29401 | r29402 | |
| 33 | 33 | const device_type X76F100 = &device_creator<x76f100_device>; |
| 34 | 34 | |
| 35 | 35 | x76f100_device::x76f100_device( const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock ) |
| 36 | | : device_t( mconfig, X76F100, "X76F100", tag, owner, clock, "x76f100", __FILE__ ), |
| 36 | : device_t( mconfig, X76F100, "X76F100 Flash", tag, owner, clock, "x76f100", __FILE__ ), |
| 37 | 37 | device_nvram_interface(mconfig, *this), |
| 38 | 38 | m_cs( 0 ), |
| 39 | 39 | m_rst( 0 ), |
trunk/src/emu/machine/z80ctc.c
| r29401 | r29402 | |
| 80 | 80 | //------------------------------------------------- |
| 81 | 81 | |
| 82 | 82 | z80ctc_device::z80ctc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 83 | | : device_t(mconfig, Z80CTC, "Zilog Z80 CTC", tag, owner, clock, "z80ctc", __FILE__), |
| 83 | : device_t(mconfig, Z80CTC, "Z80 CTC", tag, owner, clock, "z80ctc", __FILE__), |
| 84 | 84 | device_z80daisy_interface(mconfig, *this) |
| 85 | 85 | { |
| 86 | 86 | } |
trunk/src/emu/machine/x2212.c
| r29401 | r29402 | |
| 37 | 37 | //------------------------------------------------- |
| 38 | 38 | |
| 39 | 39 | x2212_device::x2212_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 40 | | : device_t(mconfig, X2212, "X2212", tag, owner, clock, "x2212", __FILE__), |
| 40 | : device_t(mconfig, X2212, "X2212 NVRAM", tag, owner, clock, "x2212", __FILE__), |
| 41 | 41 | device_memory_interface(mconfig, *this), |
| 42 | 42 | device_nvram_interface(mconfig, *this), |
| 43 | 43 | m_auto_save(false), |
trunk/src/emu/machine/i8155.c
| r29401 | r29402 | |
| 201 | 201 | //------------------------------------------------- |
| 202 | 202 | |
| 203 | 203 | i8155_device::i8155_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 204 | | : device_t(mconfig, I8155, "Intel 8155", tag, owner, clock, "i8155", __FILE__), |
| 204 | : device_t(mconfig, I8155, "8155 RIOT", tag, owner, clock, "i8155", __FILE__), |
| 205 | 205 | device_memory_interface(mconfig, *this), |
| 206 | 206 | m_command(0), |
| 207 | 207 | m_status(0), |
trunk/src/emu/machine/i8279.c
| r29401 | r29402 | |
| 88 | 88 | //------------------------------------------------- |
| 89 | 89 | |
| 90 | 90 | i8279_device::i8279_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 91 | | : device_t(mconfig, I8279, "Intel 8279", tag, owner, clock, "i8279", __FILE__) |
| 91 | : device_t(mconfig, I8279, "8279 KDC", tag, owner, clock, "i8279", __FILE__) |
| 92 | 92 | { |
| 93 | 93 | } |
| 94 | 94 | |
trunk/src/emu/machine/7474.c
| r29401 | r29402 | |
| 54 | 54 | //------------------------------------------------- |
| 55 | 55 | |
| 56 | 56 | ttl7474_device::ttl7474_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 57 | | : device_t(mconfig, TTL7474, "7474", tag, owner, clock, "7474", __FILE__), |
| 57 | : device_t(mconfig, TTL7474, "7474 TTL", tag, owner, clock, "7474", __FILE__), |
| 58 | 58 | m_output_func(*this), |
| 59 | 59 | m_comp_output_func(*this) |
| 60 | 60 | { |
trunk/src/emu/machine/m6m80011ap.c
| r29401 | r29402 | |
| 26 | 26 | //------------------------------------------------- |
| 27 | 27 | |
| 28 | 28 | m6m80011ap_device::m6m80011ap_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 29 | | : device_t(mconfig, M6M80011AP, "m6m80011ap", tag, owner, clock, "m6m80011ap", __FILE__), |
| 29 | : device_t(mconfig, M6M80011AP, "M6M80011AP EEPROM", tag, owner, clock, "m6m80011ap", __FILE__), |
| 30 | 30 | device_nvram_interface(mconfig, *this) |
| 31 | 31 | { |
| 32 | 32 | } |
trunk/src/emu/machine/i8255.c
| r29401 | r29402 | |
| 262 | 262 | //------------------------------------------------- |
| 263 | 263 | |
| 264 | 264 | i8255_device::i8255_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 265 | | : device_t(mconfig, I8255, "Intel 8255", tag, owner, clock, "i8255", __FILE__) |
| 265 | : device_t(mconfig, I8255, "8255 PPI", tag, owner, clock, "i8255", __FILE__) |
| 266 | 266 | { |
| 267 | 267 | m_intr[PORT_A] = m_intr[PORT_B] = 0; |
| 268 | 268 | m_control = 0; |
trunk/src/emu/machine/pit8253.c
| r29401 | r29402 | |
| 48 | 48 | |
| 49 | 49 | |
| 50 | 50 | pit8253_device::pit8253_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : |
| 51 | | device_t(mconfig, PIT8253, "Intel PIT8253", tag, owner, clock, "pit8253", __FILE__), |
| 51 | device_t(mconfig, PIT8253, "8253 PIT", tag, owner, clock, "pit8253", __FILE__), |
| 52 | 52 | m_clk0(0), |
| 53 | 53 | m_clk1(0), |
| 54 | 54 | m_clk2(0), |
| r29401 | r29402 | |
| 79 | 79 | const device_type PIT8254 = &device_creator<pit8254_device>; |
| 80 | 80 | |
| 81 | 81 | pit8254_device::pit8254_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 82 | | : pit8253_device(mconfig, PIT8254, "Intel PIT8254", tag, owner, clock, "pit8254", __FILE__) |
| 82 | : pit8253_device(mconfig, PIT8254, "8254 PIT", tag, owner, clock, "pit8254", __FILE__) |
| 83 | 83 | { |
| 84 | 84 | } |
| 85 | 85 | |
trunk/src/emu/machine/z80sio.c
| r29401 | r29402 | |
| 298 | 298 | //------------------------------------------------- |
| 299 | 299 | |
| 300 | 300 | z80sio_device::z80sio_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 301 | | : device_t(mconfig, Z80SIO, "Zilog Z80 SIO", tag, owner, clock, "z80sio", __FILE__), |
| 301 | : device_t(mconfig, Z80SIO, "Z80 SIO", tag, owner, clock, "z80sio", __FILE__), |
| 302 | 302 | device_z80daisy_interface(mconfig, *this) |
| 303 | 303 | { |
| 304 | 304 | for (int i = 0; i < 8; i++) |