| 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 |
| r32082 | r32083 | |
|---|---|---|
| 106 | 106 | #define MCFG_PPU2C0X_SET_SCREEN MCFG_VIDEO_SET_SCREEN |
| 107 | 107 | |
| 108 | 108 | #define MCFG_PPU2C0X_CPU(_tag) \ |
| 109 | ppu2c0x_device::set_cpu_tag(*device, "^"_tag); | |
| 109 | ppu2c0x_device::set_cpu_tag(*device, "^" _tag); | |
| 110 | 110 | |
| 111 | 111 | #define MCFG_PPU2C0X_COLORBASE(_color) \ |
| 112 | 112 | ppu2c0x_device::set_color_base(*device, _color); |
| r32082 | r32083 | |
|---|---|---|
| 72 | 72 | MCFG_DEVICE_SLOT_INTERFACE(ep64_expansion_bus_cards, _def_slot, false) |
| 73 | 73 | |
| 74 | 74 | #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); | |
| 76 | 76 | |
| 77 | 77 | #define MCFG_EP64_EXPANSION_BUS_SLOT_IRQ_CALLBACK(_write) \ |
| 78 | 78 | devcb = &ep64_expansion_bus_slot_device::set_irq_wr_callback(*device, DEVCB_##_write); |
| r32082 | r32083 | |
|---|---|---|
| 238 | 238 | |
| 239 | 239 | |
| 240 | 240 | #define MCFG_VIC3_CPU(_tag) \ |
| 241 | vic3_device::static_set_cpu_tag(*device, "^"_tag); | |
| 241 | vic3_device::static_set_cpu_tag(*device, "^" _tag); | |
| 242 | 242 | |
| 243 | 243 | #define MCFG_VIC3_TYPE(_type) \ |
| 244 | 244 | vic3_device::set_vic3_type(*device, _type); |
| r32082 | r32083 | |
|---|---|---|
| 92 | 92 | //*************************************************************************** |
| 93 | 93 | |
| 94 | 94 | #define MCFG_MOS6566_CPU(_tag) \ |
| 95 | mos6566_device::static_set_cpu_tag(*device, "^"_tag); | |
| 95 | mos6566_device::static_set_cpu_tag(*device, "^" _tag); | |
| 96 | 96 | |
| 97 | 97 | #define MCFG_MOS6566_IRQ_CALLBACK(_write) \ |
| 98 | 98 | devcb = &mos6566_device::set_irq_wr_callback(*device, DEVCB_##_write); |
| r32082 | r32083 | |
|---|---|---|
| 94 | 94 | extern const device_type UPD71071; |
| 95 | 95 | |
| 96 | 96 | #define MCFG_UPD71071_CPU(_tag) \ |
| 97 | upd71071_device::static_set_cpu_tag(*device, "^"_tag); | |
| 97 | upd71071_device::static_set_cpu_tag(*device, "^" _tag); | |
| 98 | 98 | |
| 99 | 99 | #define MCFG_UPD71071_CLOCK(_clk) \ |
| 100 | 100 | upd71071_device::set_clock(*device, _clk); |
| r32082 | r32083 | |
|---|---|---|
| 704 | 704 | extern const device_type MC68328; |
| 705 | 705 | |
| 706 | 706 | #define MCFG_MC68328_CPU(_tag) \ |
| 707 | mc68328_device::static_set_cpu_tag(*device, "^"_tag); | |
| 707 | mc68328_device::static_set_cpu_tag(*device, "^" _tag); | |
| 708 | 708 | |
| 709 | 709 | #define MCFG_MC68328_OUT_PORT_A_CB(_devcb) \ |
| 710 | 710 | devcb = &mc68328_device::set_out_port_a_callback(*device, DEVCB_##_devcb); |
| r32082 | r32083 | |
|---|---|---|
| 53 | 53 | extern const device_type C6280; |
| 54 | 54 | |
| 55 | 55 | #define MCFG_C6280_CPU(_tag) \ |
| 56 | c6280_device::set_devicecpu_tag(*device, "^"_tag); | |
| 56 | c6280_device::set_devicecpu_tag(*device, "^" _tag); | |
| 57 | 57 | |
| 58 | 58 | |
| 59 | 59 | #endif /* __C6280_H__ */ |
| r32082 | r32083 | |
|---|---|---|
| 9 | 9 | ***************************************************************************/ |
| 10 | 10 | |
| 11 | 11 | extern const char build_version[]; |
| 12 | const char build_version[] = "0.154 ("__DATE__")"; | |
| 12 | const char build_version[] = "0.154 (" __DATE__")"; |
| r32082 | r32083 | |
|---|---|---|
| 46 | 46 | ///************************************************************************* |
| 47 | 47 | |
| 48 | 48 | #define MCFG_ZX8301_CPU(_tag) \ |
| 49 | zx8301_device::static_set_cpu_tag(*device, "^"_tag); | |
| 49 | zx8301_device::static_set_cpu_tag(*device, "^" _tag); | |
| 50 | 50 | |
| 51 | 51 | #define MCFG_ZX8301_VSYNC_CALLBACK(_write) \ |
| 52 | 52 | devcb = &zx8301_device::set_vsync_wr_callback(*device, DEVCB_##_write); |
| Previous | 199869 Revisions | Next |