diff options
Diffstat (limited to 'src/mess/drivers/vip.c')
-rw-r--r-- | src/mess/drivers/vip.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mess/drivers/vip.c b/src/mess/drivers/vip.c index 18ebd03a343..3fb99e69a3a 100644 --- a/src/mess/drivers/vip.c +++ b/src/mess/drivers/vip.c @@ -754,7 +754,9 @@ static MACHINE_CONFIG_START( vip, vip_state ) MCFG_VIP_BYTEIO_PORT_ADD(VIP_BYTEIO_PORT_TAG, vip_byteio_cards, NULL, WRITELINE(vip_state, byteio_inst_w)) MCFG_VIP_EXPANSION_SLOT_ADD(VIP_EXPANSION_SLOT_TAG, XTAL_3_52128MHz/2, vip_expansion_cards, NULL) - MCFG_VIP_EXPANSION_SLOT_CALLBACKS(WRITELINE(vip_state, exp_int_w), WRITELINE(vip_state, exp_dma_out_w), WRITELINE(vip_state, exp_dma_in_w)) + MCFG_VIP_EXPANSION_SLOT_INT_CALLBACK(WRITELINE(vip_state, exp_int_w)) + MCFG_VIP_EXPANSION_SLOT_DMA_OUT_CALLBACK(WRITELINE(vip_state, exp_dma_out_w)) + MCFG_VIP_EXPANSION_SLOT_DMA_IN_CALLBACK(WRITELINE(vip_state, exp_dma_in_w)) // devices MCFG_QUICKLOAD_ADD("quickload", vip_state, vip, "bin,c8,c8x", 0) |