trunk/src/emu/machine/i8257.h
| r30849 | r30850 | |
| 45 | 45 | DEVICE CONFIGURATION MACROS |
| 46 | 46 | ***************************************************************************/ |
| 47 | 47 | |
| 48 | | #define MCFG_I8257_ADD(_tag, _clock, _config) \ |
| 49 | | MCFG_DEVICE_ADD(_tag, I8257, _clock) \ |
| 50 | | MCFG_DEVICE_CONFIG(_config) |
| 51 | | |
| 52 | 48 | #define MCFG_I8257_OUT_HRQ_CB(_devcb) \ |
| 53 | 49 | devcb = &i8257_device::set_out_hrq_callback(*device, DEVCB_##_devcb); |
| 54 | 50 | |
trunk/src/emu/machine/adc0808.h
| r30849 | r30850 | |
| 34 | 34 | #include "emu.h" |
| 35 | 35 | |
| 36 | 36 | |
| 37 | | |
| 38 | 37 | //************************************************************************** |
| 39 | | // INTERFACE CONFIGURATION MACROS |
| 40 | | //************************************************************************** |
| 41 | | |
| 42 | | #define MCFG_ADC0808_ADD(_tag, _clock, _config) \ |
| 43 | | MCFG_DEVICE_ADD(_tag, ADC0808, _clock) \ |
| 44 | | MCFG_DEVICE_CONFIG(_config) |
| 45 | | |
| 46 | | |
| 47 | | #define ADC0808_INTERFACE(name) \ |
| 48 | | const adc0808_interface (name) = |
| 49 | | |
| 50 | | |
| 51 | | |
| 52 | | //************************************************************************** |
| 53 | 38 | // TYPE DEFINITIONS |
| 54 | 39 | //************************************************************************** |
| 55 | 40 | |
trunk/src/emu/machine/mm58274c.h
| r30849 | r30850 | |
| 69 | 69 | DEVICE CONFIGURATION MACROS |
| 70 | 70 | ***************************************************************************/ |
| 71 | 71 | |
| 72 | | #define MCFG_MM58274C_ADD(_tag, _intrf) \ |
| 73 | | MCFG_DEVICE_ADD(_tag, MM58274C, 0) \ |
| 74 | | MCFG_DEVICE_CONFIG(_intrf) |
| 75 | | |
| 76 | 72 | #define MCFG_MM58274C_MODE24(_mode) \ |
| 77 | 73 | mm58274c_device::set_mode24(*device, _mode); |
| 78 | 74 | |
trunk/src/mess/drivers/mc10.c
| r30849 | r30850 | |
| 523 | 523 | MCFG_SCREEN_VISIBLE_AREA(00, 336-1, 00, 270-1) |
| 524 | 524 | MCFG_PALETTE_ADD("palette", 8) |
| 525 | 525 | |
| 526 | | MCFG_EF9345_ADD("ef9345", "screen") |
| 526 | MCFG_DEVICE_ADD("ef9345", EF9345, 0) |
| 527 | 527 | MCFG_EF9345_PALETTE("palette") |
| 528 | 528 | MCFG_TIMER_DRIVER_ADD_SCANLINE("alice32_sl", mc10_state, alice32_scanline, "screen", 0, 10) |
| 529 | 529 | |