diff options
Diffstat (limited to 'src/emu/bus/zorro/cards.h')
-rw-r--r-- | src/emu/bus/zorro/cards.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/emu/bus/zorro/cards.h b/src/emu/bus/zorro/cards.h new file mode 100644 index 00000000000..6c34f9394fb --- /dev/null +++ b/src/emu/bus/zorro/cards.h @@ -0,0 +1,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__ |