Previous 199869 Revisions Next

r32083 Friday 12th September, 2014 at 14:27:26 UTC by Oliver Stöneberg
some c++11 compilation fixes (nw)
[src]version.c
[src/emu/bus/ep64]exp.h
[src/emu/machine]mc68328.h upd71071.h
[src/emu/sound]c6280.h
[src/emu/video]mos6566.h vic4567.h
[src/mame/video]ppu2c0x.h
[src/mess/video]zx8301.h

trunk/src/mame/video/ppu2c0x.h
r32082r32083
106106#define MCFG_PPU2C0X_SET_SCREEN MCFG_VIDEO_SET_SCREEN
107107
108108#define MCFG_PPU2C0X_CPU(_tag) \
109   ppu2c0x_device::set_cpu_tag(*device, "^"_tag);
109   ppu2c0x_device::set_cpu_tag(*device, "^" _tag);
110110
111111#define MCFG_PPU2C0X_COLORBASE(_color) \
112112   ppu2c0x_device::set_color_base(*device, _color);
trunk/src/emu/bus/ep64/exp.h
r32082r32083
7272   MCFG_DEVICE_SLOT_INTERFACE(ep64_expansion_bus_cards, _def_slot, false)
7373
7474#define MCFG_EP64_EXPANSION_BUS_SLOT_DAVE(_tag) \
75   ep64_expansion_bus_slot_device::static_set_dave_tag(*device, "^"_tag);
75   ep64_expansion_bus_slot_device::static_set_dave_tag(*device, "^" _tag);
7676
7777#define MCFG_EP64_EXPANSION_BUS_SLOT_IRQ_CALLBACK(_write) \
7878   devcb = &ep64_expansion_bus_slot_device::set_irq_wr_callback(*device, DEVCB_##_write);
trunk/src/emu/video/vic4567.h
r32082r32083
238238
239239
240240#define MCFG_VIC3_CPU(_tag) \
241   vic3_device::static_set_cpu_tag(*device, "^"_tag);
241   vic3_device::static_set_cpu_tag(*device, "^" _tag);
242242
243243#define MCFG_VIC3_TYPE(_type) \
244244   vic3_device::set_vic3_type(*device, _type);
trunk/src/emu/video/mos6566.h
r32082r32083
9292//***************************************************************************
9393
9494#define MCFG_MOS6566_CPU(_tag) \
95   mos6566_device::static_set_cpu_tag(*device, "^"_tag);
95   mos6566_device::static_set_cpu_tag(*device, "^" _tag);
9696
9797#define MCFG_MOS6566_IRQ_CALLBACK(_write) \
9898   devcb = &mos6566_device::set_irq_wr_callback(*device, DEVCB_##_write);
trunk/src/emu/machine/upd71071.h
r32082r32083
9494extern const device_type UPD71071;
9595
9696#define MCFG_UPD71071_CPU(_tag) \
97   upd71071_device::static_set_cpu_tag(*device, "^"_tag);
97   upd71071_device::static_set_cpu_tag(*device, "^" _tag);
9898
9999#define MCFG_UPD71071_CLOCK(_clk) \
100100   upd71071_device::set_clock(*device, _clk);
trunk/src/emu/machine/mc68328.h
r32082r32083
704704extern const device_type MC68328;
705705
706706#define MCFG_MC68328_CPU(_tag) \
707   mc68328_device::static_set_cpu_tag(*device, "^"_tag);
707   mc68328_device::static_set_cpu_tag(*device, "^" _tag);
708708
709709#define MCFG_MC68328_OUT_PORT_A_CB(_devcb) \
710710   devcb = &mc68328_device::set_out_port_a_callback(*device, DEVCB_##_devcb);
trunk/src/emu/sound/c6280.h
r32082r32083
5353extern const device_type C6280;
5454
5555#define MCFG_C6280_CPU(_tag) \
56   c6280_device::set_devicecpu_tag(*device, "^"_tag);
56   c6280_device::set_devicecpu_tag(*device, "^" _tag);
5757
5858
5959#endif /* __C6280_H__ */
trunk/src/version.c
r32082r32083
99***************************************************************************/
1010
1111extern const char build_version[];
12const char build_version[] = "0.154 ("__DATE__")";
12const char build_version[] = "0.154 (" __DATE__")";
trunk/src/mess/video/zx8301.h
r32082r32083
4646///*************************************************************************
4747
4848#define MCFG_ZX8301_CPU(_tag) \
49   zx8301_device::static_set_cpu_tag(*device, "^"_tag);
49   zx8301_device::static_set_cpu_tag(*device, "^" _tag);
5050
5151#define MCFG_ZX8301_VSYNC_CALLBACK(_write) \
5252   devcb = &zx8301_device::set_vsync_wr_callback(*device, DEVCB_##_write);

Previous 199869 Revisions Next


© 1997-2024 The MAME Team