mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
MESS related fixes to enable compile after device rewrite (no whatsnew)
This commit is contained in:
parent
b7a9ae251c
commit
f523ad192d
@ -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);
|
||||
|
@ -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) \
|
||||
|
@ -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) \
|
||||
|
Loading…
Reference in New Issue
Block a user