diff options
Diffstat (limited to 'src/mess/machine/cpc_ssa1.c')
-rw-r--r-- | src/mess/machine/cpc_ssa1.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/cpc_ssa1.c b/src/mess/machine/cpc_ssa1.c index 0e02b0643aa..7e855493c66 100644 --- a/src/mess/machine/cpc_ssa1.c +++ b/src/mess/machine/cpc_ssa1.c @@ -19,11 +19,11 @@ const device_type CPC_DKSPEECH = &device_creator<cpc_dkspeech_device>; CPC_EXPANSION_INTERFACE(sub_exp_intf) { - DEVCB_LINE(cpc_irq_w), - DEVCB_LINE(cpc_nmi_w), + DEVCB_DEVICE_LINE_MEMBER("^^", cpc_expansion_slot_device, irq_w), + DEVCB_DEVICE_LINE_MEMBER("^^", cpc_expansion_slot_device, nmi_w), DEVCB_NULL, // RESET - DEVCB_LINE(cpc_romdis), // ROMDIS - DEVCB_LINE(cpc_romen) // /ROMEN + DEVCB_DEVICE_LINE_MEMBER("^^", cpc_expansion_slot_device, romdis_w), // ROMDIS + DEVCB_DEVICE_LINE_MEMBER("^^", cpc_expansion_slot_device, romen_w) // /ROMEN }; //------------------------------------------------- |