summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/generic/carts.cpp
blob: 23a079289c930f3f240be3476b618bec04a33e99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// license:BSD-3-Clause
// copyright-holders:Fabio Priuli
/**********************************************************************

 Generic ROM / RAM socket slots

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


#include "carts.h"

SLOT_INTERFACE_START(generic_plain_slot)
	SLOT_INTERFACE_INTERNAL("rom", GENERIC_ROM_PLAIN)
SLOT_INTERFACE_END

SLOT_INTERFACE_START(generic_linear_slot)
	SLOT_INTERFACE_INTERNAL("rom", GENERIC_ROM_LINEAR)
SLOT_INTERFACE_END

SLOT_INTERFACE_START(generic_romram_plain_slot)
	SLOT_INTERFACE_INTERNAL("rom", GENERIC_ROMRAM_PLAIN)
SLOT_INTERFACE_END