diff options
Diffstat (limited to 'src/emu/bus/zorro/cards.c')
-rw-r--r-- | src/emu/bus/zorro/cards.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/emu/bus/zorro/cards.c b/src/emu/bus/zorro/cards.c new file mode 100644 index 00000000000..68af08c60a5 --- /dev/null +++ b/src/emu/bus/zorro/cards.c @@ -0,0 +1,31 @@ +/*************************************************************************** + + Amiga Zorro Cards + +***************************************************************************/ + +#include "cards.h" + +SLOT_INTERFACE_START( a1000_expansion_cards ) +SLOT_INTERFACE_END + +SLOT_INTERFACE_START( a500_expansion_cards ) + SLOT_INTERFACE("ar1", ACTION_REPLAY_MK1) + SLOT_INTERFACE("ar2", ACTION_REPLAY_MK2) + SLOT_INTERFACE("ar3", ACTION_REPLAY_MK3) + SLOT_INTERFACE("a590", A590) +SLOT_INTERFACE_END + +SLOT_INTERFACE_START( a2000_expansion_cards ) + SLOT_INTERFACE("ar1", ACTION_REPLAY_MK1) + SLOT_INTERFACE("ar2", ACTION_REPLAY_MK2) + SLOT_INTERFACE("ar3", ACTION_REPLAY_MK3) +SLOT_INTERFACE_END + +SLOT_INTERFACE_START( zorro2_cards ) + SLOT_INTERFACE("a2091", A2091) +SLOT_INTERFACE_END + +SLOT_INTERFACE_START( zorro3_cards ) + SLOT_INTERFACE("a2091", A2091) +SLOT_INTERFACE_END |