summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/svi3x8/slot/cards.cpp
blob: f445162b83b9557a0511a3a842d69a7374f828d7 (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
39
// license:GPL-2.0+
// copyright-holders:Dirk Best
/***************************************************************************

    SVI 318/328 Slot Cards

***************************************************************************/

#include "emu.h"
#include "cards.h"

#include "sv801.h"
#include "sv802.h"
#include "sv803.h"
#include "sv805.h"
#include "sv806.h"
#include "sv807.h"


void svi_slot_cards(device_slot_interface &device)
{
	device.option_add("sv801", SV801);
	device.option_add("sv802", SV802);
	device.option_add("sv803", SV803);
	device.option_add("sv805", SV805);
	device.option_add("sv806", SV806);
	device.option_add("sv807", SV807);
}

// The single slot expander doesn't support the disk controller, since
// it requires its own power supply to power the disk drives
void sv602_slot_cards(device_slot_interface &device)
{
	device.option_add("sv802", SV802);
	device.option_add("sv803", SV803);
	device.option_add("sv805", SV805);
	device.option_add("sv806", SV806);
	device.option_add("sv807", SV807);
}