carpolo.cpp: partial fix for MT07343 (nw)

Controls now work but I wasn't able to fix the missing collision detection without reverting the INTERRUPT_GEN_MEMBER to device_timer change.
This commit is contained in:
Ivan Vangelista 2019-05-30 11:06:36 +02:00 committed by GitHub
parent 865e7c86a1
commit 209f56e182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -245,8 +245,8 @@ void carpolo_state::carpolo(machine_config &config)
pia0.cb2_handler().set(FUNC(carpolo_state::coin2_interrupt_clear_w));
pia6821_device &pia1(PIA6821(config, "pia1", 0));
pia0.readpa_handler().set(FUNC(carpolo_state::pia_1_port_a_r));
pia0.readpb_handler().set(FUNC(carpolo_state::pia_1_port_b_r));
pia1.readpa_handler().set(FUNC(carpolo_state::pia_1_port_a_r));
pia1.readpb_handler().set(FUNC(carpolo_state::pia_1_port_b_r));
pia1.ca2_handler().set(FUNC(carpolo_state::coin3_interrupt_clear_w));
pia1.cb2_handler().set(FUNC(carpolo_state::coin4_interrupt_clear_w));