blob: 68af08c60a5195c44aa4480039b9a658e5ceba12 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
|