trunk/src/emu/drivlgcy.h
| r24668 | r24669 | |
| 64 | 64 | #define MCFG_VIDEO_START(_func) \ |
| 65 | 65 | driver_device::static_set_callback(*owner, driver_device::CB_VIDEO_START, VIDEO_START_NAME(_func)); |
| 66 | 66 | |
| 67 | | #define MCFG_VIDEO_RESET(_func) \ |
| 68 | | driver_device::static_set_callback(*owner, driver_device::CB_VIDEO_RESET, VIDEO_RESET_NAME(_func)); |
| 69 | 67 | |
| 70 | | |
| 71 | | #define MACHINE_START_CALL(name) MACHINE_START_NAME(name)(machine) |
| 72 | | |
| 73 | | #define MACHINE_RESET_CALL(name) MACHINE_RESET_NAME(name)(machine) |
| 74 | | |
| 75 | 68 | #define PALETTE_INIT_CALL(name) PALETTE_INIT_NAME(name)(machine) |
| 76 | 69 | |
| 77 | 70 | #define VIDEO_START_CALL(name) VIDEO_START_NAME(name)(machine) |
| 78 | 71 | |
| 79 | | #define VIDEO_RESET_CALL(name) VIDEO_RESET_NAME(name)(machine) |
| 80 | | |
| 81 | 72 | #endif /* __DRIVLGCY_H__ */ |