trunk/src/devices/sound/c140.cpp
| r252876 | r252877 | |
| 95 | 95 | , m_mixer_buffer_left(nullptr), |
| 96 | 96 | , m_mixer_buffer_right(nullptr), |
| 97 | 97 | , m_baserate(0), |
| 98 | | , m_rom_region(*this, tag) |
| 98 | , m_rom_region(*this, this->tag()) |
| 99 | 99 | , m_pRom(nullptr) |
| 100 | 100 | { |
| 101 | 101 | memset(m_REG, 0, sizeof(UINT8)*0x200); |
trunk/src/devices/sound/namco.cpp
| r252876 | r252877 | |
| 38 | 38 | namco_audio_device::namco_audio_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) |
| 39 | 39 | : device_t(mconfig, type, name, tag, owner, clock, shortname, __FILE__), |
| 40 | 40 | , device_sound_interface(mconfig, *this) |
| 41 | | , m_wave_region(*this, tag) |
| 41 | , m_wave_region(*this, this->tag()) |
| 42 | 42 | , m_last_channel(nullptr) |
| 43 | 43 | , m_soundregs(nullptr) |
| 44 | 44 | , m_wavedata(nullptr) |
| r252876 | r252877 | |
| 110 | 110 | /* register with the save state system */ |
| 111 | 111 | save_pointer(NAME(m_soundregs), 0x400); |
| 112 | 112 | |
| 113 | | <<<<<<< HEAD |
| 114 | | if (region() == nullptr) |
| 115 | | ======= |
| 116 | | if (m_wave_region == NULL) |
| 117 | | >>>>>>> Yet more this==NULL fixes |
| 113 | if (m_wave_region == nullptr) |
| 118 | 114 | save_pointer(NAME(m_wavedata), 0x400); |
| 119 | 115 | |
| 120 | 116 | save_item(NAME(m_voices)); |
trunk/src/devices/sound/tms5110.cpp
| r252876 | r252877 | |
| 1537 | 1537 | tms5110_device::tms5110_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 1538 | 1538 | : device_t(mconfig, TMS5110, "TMS5110", tag, owner, clock, "tms5110", __FILE__), |
| 1539 | 1539 | , device_sound_interface(mconfig, *this) |
| 1540 | | , m_table_region(*this, tag) |
| 1540 | , m_table_region(*this, this->tag()) |
| 1541 | 1541 | , m_m0_cb(*this) |
| 1542 | 1542 | , m_m1_cb(*this) |
| 1543 | 1543 | , m_addr_cb(*this) |
| r252876 | r252877 | |
| 1549 | 1549 | tms5110_device::tms5110_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) |
| 1550 | 1550 | : device_t(mconfig, type, name, tag, owner, clock, shortname, source) |
| 1551 | 1551 | , device_sound_interface(mconfig, *this) |
| 1552 | | , m_table_region(*this, tag) |
| 1552 | , m_table_region(*this, this->tag()) |
| 1553 | 1553 | , m_m0_cb(*this) |
| 1554 | 1554 | , m_m1_cb(*this) |
| 1555 | 1555 | , m_addr_cb(*this) |
trunk/src/devices/sound/ymf271.cpp
| r252876 | r252877 | |
| 1749 | 1749 | |
| 1750 | 1750 | const device_type YMF271 = &device_creator<ymf271_device>; |
| 1751 | 1751 | |
| 1752 | | <<<<<<< HEAD |
| 1753 | 1752 | ymf271_device::ymf271_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 1754 | 1753 | : device_t(mconfig, YMF271, "YMF271", tag, owner, clock, "ymf271", __FILE__) |
| 1755 | 1754 | , device_sound_interface(mconfig, *this) |
| r252876 | r252877 | |
| 1766 | 1765 | , m_irq_handler(*this) |
| 1767 | 1766 | , m_ext_read_handler(*this) |
| 1768 | 1767 | , m_ext_write_handler(*this) |
| 1769 | | , m_mem_region(*this, tag) |
| 1768 | , m_mem_region(*this, this->tag()) |
| 1770 | 1769 | , m_clock(0) |
| 1771 | 1770 | , m_timA(nullptr) |
| 1772 | 1771 | , m_timB(nullptr) |
trunk/src/mame/video/sega16sp.cpp
| r252876 | r252877 | |
| 826 | 826 | |
| 827 | 827 | sega_sys16b_sprite_device::sega_sys16b_sprite_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 828 | 828 | : sega_16bit_sprite_device(mconfig, SEGA_SYS16B_SPRITES, "Sega System 16B Sprites", tag, owner, "sega_16bit_sprite", __FILE__) |
| 829 | | , m_sprite_region(*this, tag) |
| 829 | , m_sprite_region(*this, this->tag()) |
| 830 | 830 | { |
| 831 | 831 | set_local_origin(184, 0x00, -184, 0); |
| 832 | 832 | } |