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
32
33
34
35
36
37
38
39
|
// license:???
// copyright-holders:???
/***************************************************************************
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("a2052", A2052)
SLOT_INTERFACE("a2091", A2091)
SLOT_INTERFACE("a2232", A2232)
SLOT_INTERFACE("buddha", BUDDHA)
SLOT_INTERFACE_END
SLOT_INTERFACE_START( zorro3_cards )
SLOT_INTERFACE("a2052", A2052)
SLOT_INTERFACE("a2091", A2091)
SLOT_INTERFACE("a2232", A2232)
SLOT_INTERFACE("buddha", BUDDHA)
SLOT_INTERFACE_END
|