trunk/src/mame/drivers/turrett.c
| r31264 | r31265 | |
| 321 | 321 | { |
| 322 | 322 | public: |
| 323 | 323 | turrett_hdd(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 324 | | : ide_hdd_device(mconfig, TURRETT_HARDDISK, "Turrett Tower HDD", tag, owner, clock, "turrett_hdd", __FILE__) |
| 324 | : ide_hdd_device(mconfig, TURRETT_HARDDISK, "HDD Turrett Tower", tag, owner, clock, "turrett_hdd", __FILE__) |
| 325 | 325 | { |
| 326 | 326 | } |
| 327 | 327 | |
trunk/src/mame/drivers/jaguar.c
| r31264 | r31265 | |
| 377 | 377 | { |
| 378 | 378 | public: |
| 379 | 379 | cojag_hdd(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 380 | | : ide_hdd_device(mconfig, COJAG_HARDDISK, "cojag HDD", tag, owner, clock, "cojag_hdd", __FILE__) |
| 380 | : ide_hdd_device(mconfig, COJAG_HARDDISK, "HDD CoJag", tag, owner, clock, "cojag_hdd", __FILE__) |
| 381 | 381 | { |
| 382 | 382 | } |
| 383 | 383 | |
trunk/src/mame/machine/deco104.c
| r31264 | r31265 | |
| 1054 | 1054 | |
| 1055 | 1055 | |
| 1056 | 1056 | deco104_device::deco104_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 1057 | | : deco_146_base_device(mconfig, DECO104PROT, "DECO104PROT", tag, owner, clock, "deco104", __FILE__) |
| 1057 | : deco_146_base_device(mconfig, DECO104PROT, "DECO 104 Protection", tag, owner, clock, "deco104", __FILE__) |
| 1058 | 1058 | { |
| 1059 | 1059 | m_bankswitch_swap_read_address = 0x66; |
| 1060 | 1060 | m_magic_read_address_xor = 0x2a4; |
trunk/src/mame/machine/deco146.c
| r31264 | r31265 | |
| 1509 | 1509 | |
| 1510 | 1510 | |
| 1511 | 1511 | deco146_device::deco146_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 1512 | | : deco_146_base_device(mconfig, DECO146PROT, "DECO146PROT", tag, owner, clock, "deco146", __FILE__) |
| 1512 | : deco_146_base_device(mconfig, DECO146PROT, "DECO 146 Protection", tag, owner, clock, "deco146", __FILE__) |
| 1513 | 1513 | { |
| 1514 | 1514 | m_bankswitch_swap_read_address = 0x78; |
| 1515 | 1515 | m_magic_read_address_xor = 0x44a; |
trunk/src/mame/machine/atari_vg.c
| r31264 | r31265 | |
| 16 | 16 | //------------------------------------------------- |
| 17 | 17 | |
| 18 | 18 | atari_vg_earom_device::atari_vg_earom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 19 | | : device_t(mconfig, ATARIVGEAROM, "ATARI VG EAROM", tag, owner, clock, "atari_vg_earom", __FILE__), |
| 19 | : device_t(mconfig, ATARIVGEAROM, "Atari VG EAROM", tag, owner, clock, "atari_vg_earom", __FILE__), |
| 20 | 20 | device_nvram_interface(mconfig, *this) |
| 21 | 21 | { |
| 22 | 22 | } |
trunk/src/mame/video/k054338.c
| r31264 | r31265 | |
| 19 | 19 | const device_type K054338 = &device_creator<k054338_device>; |
| 20 | 20 | |
| 21 | 21 | k054338_device::k054338_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 22 | | : device_t(mconfig, K054338, "K054338 Mixer Device", tag, owner, clock, "k054338", __FILE__), |
| 22 | : device_t(mconfig, K054338, "K054338 Mixer", tag, owner, clock, "k054338", __FILE__), |
| 23 | 23 | device_video_interface(mconfig, *this), |
| 24 | 24 | m_alpha_inv(0), |
| 25 | 25 | m_k055555_tag(NULL) |
trunk/src/mame/video/k051733.c
| r31264 | r31265 | |
| 63 | 63 | const device_type K051733 = &device_creator<k051733_device>; |
| 64 | 64 | |
| 65 | 65 | k051733_device::k051733_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 66 | | : device_t(mconfig, K051733, "K051733 Protection Device", tag, owner, clock, "k051733", __FILE__), |
| 66 | : device_t(mconfig, K051733, "K051733 Protection", tag, owner, clock, "k051733", __FILE__), |
| 67 | 67 | //m_ram[0x20], |
| 68 | 68 | m_rng(0) |
| 69 | 69 | { |
trunk/src/mame/video/k054000.c
| r31264 | r31265 | |
| 53 | 53 | const device_type K054000 = &device_creator<k054000_device>; |
| 54 | 54 | |
| 55 | 55 | k054000_device::k054000_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 56 | | : device_t(mconfig, K054000, "K054000 Protection Device", tag, owner, clock, "k054000", __FILE__) |
| 56 | : device_t(mconfig, K054000, "K054000 Protection", tag, owner, clock, "k054000", __FILE__) |
| 57 | 57 | { |
| 58 | 58 | } |
| 59 | 59 | |
trunk/src/emu/video/i8275.c
| r31264 | r31265 | |
| 95 | 95 | //------------------------------------------------- |
| 96 | 96 | |
| 97 | 97 | i8275_device::i8275_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : |
| 98 | | device_t(mconfig, I8275, "I8275", tag, owner, clock, "i8275x", __FILE__), |
| 98 | device_t(mconfig, I8275, "I8275 CRTC", tag, owner, clock, "i8275x", __FILE__), |
| 99 | 99 | device_video_interface(mconfig, *this), |
| 100 | 100 | m_write_irq(*this), |
| 101 | 101 | m_write_drq(*this), |
trunk/src/emu/video/pc_vga.c
| r31264 | r31265 | |
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | gamtor_vga_device::gamtor_vga_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 167 | | : svga_device(mconfig, GAMTOR_VGA, "GAMTOR_VGA", tag, owner, clock, "gamtor_vga", __FILE__) |
| 167 | : svga_device(mconfig, GAMTOR_VGA, "GAMTOR VGA", tag, owner, clock, "gamtor_vga", __FILE__) |
| 168 | 168 | { |
| 169 | 169 | } |
| 170 | 170 | |
trunk/src/emu/machine/k053252.c
| r31264 | r31265 | |
| 65 | 65 | const device_type K053252 = &device_creator<k053252_device>; |
| 66 | 66 | |
| 67 | 67 | k053252_device::k053252_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 68 | | : device_t(mconfig, K053252, "K053252 Timing/Interrupt Device", tag, owner, clock, "k053252", __FILE__), |
| 68 | : device_t(mconfig, K053252, "K053252 Timing/Interrupt", tag, owner, clock, "k053252", __FILE__), |
| 69 | 69 | device_video_interface(mconfig, *this), |
| 70 | 70 | m_int1_en_cb(*this), |
| 71 | 71 | m_int2_en_cb(*this), |
trunk/src/emu/machine/serflash.c
| r31264 | r31265 | |
| 20 | 20 | //------------------------------------------------- |
| 21 | 21 | |
| 22 | 22 | serflash_device::serflash_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 23 | | : device_t(mconfig, SERFLASH, "SERFLASH", tag, owner, clock, "serflash", __FILE__), |
| 23 | : device_t(mconfig, SERFLASH, "Serial Flash", tag, owner, clock, "serflash", __FILE__), |
| 24 | 24 | device_nvram_interface(mconfig, *this), |
| 25 | 25 | m_length(0) |
| 26 | 26 | { |