Previous 199869 Revisions Next

r44369 Saturday 23rd January, 2016 at 16:30:14 UTC by Ryan Holtz
Fixes to bring in line with master
[src/devices/sound]namco.cpp tms5110.cpp upd7759.cpp ymf271.h
[src/mame/drivers]arsystems.cpp igs011.cpp
[src/mame/includes]n64.h

trunk/src/devices/sound/namco.cpp
r252880r252881
3636const device_type NAMCO_CUS30 = &device_creator<namco_cus30_device>;
3737
3838namco_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   : device_t(mconfig, type, name, tag, owner, clock, shortname, __FILE__),
39   : device_t(mconfig, type, name, tag, owner, clock, shortname, __FILE__)
4040   , device_sound_interface(mconfig, *this)
4141   , m_wave_ptr(*this, DEVICE_SELF)
4242   , m_last_channel(nullptr)
trunk/src/devices/sound/tms5110.cpp
r252880r252881
15291529const device_type TMS5110 = &device_creator<tms5110_device>;
15301530
15311531tms5110_device::tms5110_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
1532   : device_t(mconfig, TMS5110, "TMS5110", tag, owner, clock, "tms5110", __FILE__),
1532   : device_t(mconfig, TMS5110, "TMS5110", tag, owner, clock, "tms5110", __FILE__)
15331533   , device_sound_interface(mconfig, *this)
15341534   , m_table(*this, DEVICE_SELF)
15351535   , m_m0_cb(*this)
trunk/src/devices/sound/upd7759.cpp
r252880r252881
171171   , m_adpcm_state(0)
172172   , m_adpcm_data(0)
173173   , m_sample(0)
174   , m_rom_region(*this, DEVICE_SELF)
174   , m_rombase(*this, DEVICE_SELF)
175175   , m_rom(nullptr)
176   , m_rombase(nullptr)
177176   , m_romoffset(0)
178177   , m_rommask(0)
179178   , m_drqcallback(*this)
180{
181}
179   {
180   }
182181
183182const device_type UPD7759 = &device_creator<upd7759_device>;
184183
trunk/src/devices/sound/ymf271.h
r252880r252881
1616#define MCFG_YMF271_EXT_WRITE_HANDLER(_devcb) \
1717   devcb = &ymf271_device::set_ext_write_handler(*device, DEVCB_##_devcb);
1818
19class ymf271_device : public device_t,
20                           public device_sound_interface
19class ymf271_device : public device_t, public device_sound_interface
2120{
2221public:
2322   ymf271_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
trunk/src/mame/drivers/arsystems.cpp
r252880r252881
6767   {
6868   }
6969
70   UINT8 m_coin_counter[2];
71
7270   DECLARE_WRITE16_MEMBER(arcadia_multibios_change_game);
7371   DECLARE_CUSTOM_INPUT_MEMBER(coin_counter_r);
7472   DECLARE_INPUT_CHANGED_MEMBER(coin_changed_callback);
trunk/src/mame/drivers/igs011.cpp
r252880r252881
108108   optional_shared_ptr<UINT16> m_vbowl_trackball;
109109   required_shared_ptr<UINT16> m_generic_paletteram_16;
110110
111   std::unique_ptr<UINT8[]> m_layer[8];
112111   /* memory regions */
113112   required_memory_region m_gfx_region;
114113   optional_memory_region m_gfx2_region;
115114
116   UINT8 *m_layer[8];
115   std::unique_ptr<UINT8[]> m_layer[8];
117116   UINT16 m_priority;
118117   UINT8 m_lhb2_pen_hi;
119118   UINT16 m_igs_dips_sel;
trunk/src/mame/includes/n64.h
r252880r252881
2525   {
2626   }
2727
28   /* video-related */
29   n64_rdp *m_rdp;
30
3128   virtual void machine_start() override;
3229   virtual void machine_reset() override;
3330   virtual void video_start() override;


Previous 199869 Revisions Next


© 1997-2024 The MAME Team