MESS related fixes to enable compile after device rewrite (no whatsnew)

This commit is contained in:
Miodrag Milanovic 2010-06-11 13:32:49 +00:00
parent b7a9ae251c
commit f523ad192d
3 changed files with 4 additions and 5 deletions

View File

@ -19,8 +19,8 @@ enum
PDP1_IO_COMPLETE /* hack, do not use directly, use pdp1_pulse_iot_done instead */
};
#define pdp1_pulse_start_clear(cpudevice) cpu_set_reg(cpudevice, PDP1_START_CLEAR, 0)
#define pdp1_pulse_iot_done(cpudevice) cpu_set_reg(cpudevice, PDP1_IO_COMPLETE, 0)
#define pdp1_pulse_start_clear(cpudevice) cpu_set_reg(cpudevice, PDP1_START_CLEAR, (UINT64)0)
#define pdp1_pulse_iot_done(cpudevice) cpu_set_reg(cpudevice, PDP1_IO_COMPLETE, (UINT64)0)
typedef void (*pdp1_extern_iot_func)(running_device *device, int op2, int nac, int mb, int *io, int ac);
typedef void (*pdp1_read_binary_word_func)(running_device *device);

View File

@ -30,7 +30,7 @@
DECLARE_LEGACY_SOUND_DEVICE(CDP1863, cdp1863);
#define MDRV_CDP1863_ADD(_tag, _clock1, _clock2) \
MDRV_DEVICE_ADD(_tag, SOUND, _clock1) \
MDRV_SOUND_ADD(_tag, CDP1863, _clock1) \
MDRV_DEVICE_CONFIG_DATA32(cdp1863_config, clock2, _clock2)
#define CDP1863_INTERFACE(name) \

View File

@ -78,8 +78,7 @@
DECLARE_LEGACY_SOUND_DEVICE(CDP1864, cdp1864);
#define MDRV_CDP1864_ADD(_tag, _clock, _config) \
MDRV_DEVICE_ADD(_tag, SOUND, _clock) \
MDRV_DEVICE_CONFIG_DATAPTR(sound_config, type, SOUND_CDP1864) \
MDRV_SOUND_ADD(_tag, CDP1864, _clock) \
MDRV_DEVICE_CONFIG(_config)
#define MDRV_CDP1864_SCREEN_ADD(_tag, _clock) \