summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/mc68000/cards.cpp
blob: 2cebfd660af58aa827b87b4063d159ccaf843931 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// license: BSD-3-Clause
// copyright-holders: Dirk Best
/***************************************************************************

    mc-68000-Computer System Bus Cards

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

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

#include "floppy.h"
#include "ram.h"

void mc68000_sysbus_cards(device_slot_interface &device)
{
	device.option_add("floppy", MC68000_FLOPPY);
	device.option_add("ram", MC68000_RAM);
}