From 983d5a1bda7869be2dee02a488ad208492ac3cae Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 5 Apr 2018 00:12:28 -0400 Subject: racedrivpan: Fix fatal error caused by ADC introduction (nw) --- src/mame/drivers/harddriv.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/mame/drivers/harddriv.cpp b/src/mame/drivers/harddriv.cpp index 11076a26310..5255cf1ff73 100644 --- a/src/mame/drivers/harddriv.cpp +++ b/src/mame/drivers/harddriv.cpp @@ -1822,6 +1822,16 @@ MACHINE_CONFIG_START(racedrivc_panorama_side_board_device_state::device_add_mcon multisync_nomsp(config); + MCFG_DEVICE_MODIFY("adc8") // 8-bit analog inputs read but not used? + MCFG_ADC0808_IN0_CB(CONSTANT(0xff)) + MCFG_ADC0808_IN1_CB(CONSTANT(0xff)) + MCFG_ADC0808_IN2_CB(CONSTANT(0xff)) + MCFG_ADC0808_IN3_CB(CONSTANT(0xff)) + MCFG_ADC0808_IN4_CB(CONSTANT(0xff)) + MCFG_ADC0808_IN5_CB(CONSTANT(0xff)) + MCFG_ADC0808_IN6_CB(CONSTANT(0xff)) + MCFG_ADC0808_IN7_CB(CONSTANT(0xff)) + /* basic machine hardware */ /* multisync board without MSP */ adsp(config); /* ADSP board */ // dsk(config); /* DSK board */ -- cgit v1.2.3