summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/cococart.h
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-05-29 13:52:16 +0000
committer smf- <smf-@users.noreply.github.com>2013-05-29 13:52:16 +0000
commit459b30be0f931ce0d9b26d929b4bd40608188fc5 (patch)
treeeb75898a8d5a186c8d89c2a69bb52c5344402b8f /src/mess/machine/cococart.h
parentf3c89aced23e12140b915172d38d8e841f0ae378 (diff)
Moved default card config, device inputs and clock off the slot interface so they can be specified for all cards [smf]
Diffstat (limited to 'src/mess/machine/cococart.h')
-rw-r--r--src/mess/machine/cococart.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/cococart.h b/src/mess/machine/cococart.h
index d7c4958d480..aaee2ba2e80 100644
--- a/src/mess/machine/cococart.h
+++ b/src/mess/machine/cococart.h
@@ -165,10 +165,10 @@ private:
DEVICE CONFIGURATION MACROS
***************************************************************************/
-#define MCFG_COCO_CARTRIDGE_ADD(_tag,_config,_slot_intf,_def_slot, _def_inp) \
+#define MCFG_COCO_CARTRIDGE_ADD(_tag,_config,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, COCOCART_SLOT, 0) \
MCFG_DEVICE_CONFIG(_config) \
- MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, _def_inp, false)
+ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
#define MCFG_COCO_CARTRIDGE_REMOVE(_tag) \
MCFG_DEVICE_REMOVE(_tag)