mirror of
https://github.com/holub/mame
synced 2025-07-06 02:18:09 +03:00
more c++11 compilation fixes (nw)
This commit is contained in:
parent
71c19af91f
commit
90a9339d0f
@ -18,7 +18,7 @@
|
|||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#define MCFG_K056230_CPU(_tag) \
|
#define MCFG_K056230_CPU(_tag) \
|
||||||
k056230_device::set_cpu_tag(*device, "^"_tag);
|
k056230_device::set_cpu_tag(*device, "^" _tag);
|
||||||
|
|
||||||
#define MCFG_K056230_HACK(_region) \
|
#define MCFG_K056230_HACK(_region) \
|
||||||
k056230_device::set_thunderh_hack(*device, _region);
|
k056230_device::set_thunderh_hack(*device, _region);
|
||||||
|
@ -84,7 +84,7 @@ extern const device_type MB_VCU;
|
|||||||
//**************************************************************************
|
//**************************************************************************
|
||||||
|
|
||||||
#define MCFG_MB_VCU_CPU(_tag) \
|
#define MCFG_MB_VCU_CPU(_tag) \
|
||||||
mb_vcu_device::set_cpu_tag(*device, "^"_tag);
|
mb_vcu_device::set_cpu_tag(*device, "^" _tag);
|
||||||
|
|
||||||
#define MCFG_MB_VCU_PALETTE(_palette_tag) \
|
#define MCFG_MB_VCU_PALETTE(_palette_tag) \
|
||||||
mb_vcu_device::static_set_palette_tag(*device, "^" _palette_tag);
|
mb_vcu_device::static_set_palette_tag(*device, "^" _palette_tag);
|
||||||
|
@ -7,10 +7,10 @@
|
|||||||
//**************************************************************************
|
//**************************************************************************
|
||||||
|
|
||||||
#define MCFG_TC0140SYT_MASTER_CPU(_tag) \
|
#define MCFG_TC0140SYT_MASTER_CPU(_tag) \
|
||||||
tc0140syt_device::set_master_tag(*device, "^"_tag);
|
tc0140syt_device::set_master_tag(*device, "^" _tag);
|
||||||
|
|
||||||
#define MCFG_TC0140SYT_SLAVE_CPU(_tag) \
|
#define MCFG_TC0140SYT_SLAVE_CPU(_tag) \
|
||||||
tc0140syt_device::set_slave_tag(*device, "^"_tag);
|
tc0140syt_device::set_slave_tag(*device, "^" _tag);
|
||||||
|
|
||||||
|
|
||||||
//**************************************************************************
|
//**************************************************************************
|
||||||
|
@ -61,6 +61,6 @@ extern const device_type VIDEO_VRENDER0;
|
|||||||
|
|
||||||
|
|
||||||
#define MCFG_VIDEO_VRENDER0_CPU(_tag) \
|
#define MCFG_VIDEO_VRENDER0_CPU(_tag) \
|
||||||
vr0video_device::set_cpu_tag(*device, "^"_tag);
|
vr0video_device::set_cpu_tag(*device, "^" _tag);
|
||||||
|
|
||||||
#endif /* __VR0VIDEO_H__ */
|
#endif /* __VR0VIDEO_H__ */
|
||||||
|
Loading…
Reference in New Issue
Block a user