diff options
author | 2014-03-16 10:32:02 +0000 | |
---|---|---|
committer | 2014-03-16 10:32:02 +0000 | |
commit | fbdf07c69f8d59a9569d196a3e85a090d4b4ab17 (patch) | |
tree | 58e1416f248116298f818e273480e837f9252eae /src/mess/machine/cpc_ssa1.c | |
parent | 93f4e806a4cbddc47ddbae62a4550daa0a1ae94d (diff) |
redo amstrad expansion slot devcb usage (nw)
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 }; //------------------------------------------------- |