blob: 6c34f9394fb25825e9cf59e77492afc1f2363b55 (
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
32
33
34
35
36
37
38
|
/***************************************************************************
Amiga Zorro Cards
There are different card types and layouts:
* 86-pin expansion slot
- A1000
- A500 (rotated slot)
- A2000/B2000 (internal slot)
* Zorro-II
- A2000
- B2000
* Zorro-III
- A3000, A4000
For details see zorro.h. Zorro-II cards can be inserted into
Zorro-III slots.
***************************************************************************/
#pragma once
#ifndef __CARDS_H__
#define __CARDS_H__
#include "emu.h"
#include "a590.h"
#include "action_replay.h"
SLOT_INTERFACE_EXTERN( a1000_expansion_cards );
SLOT_INTERFACE_EXTERN( a500_expansion_cards );
SLOT_INTERFACE_EXTERN( a2000_expansion_cards );
SLOT_INTERFACE_EXTERN( zorro2_cards );
SLOT_INTERFACE_EXTERN( zorro3_cards );
#endif // __CARDS_H__
|