summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/generic/carts.c
blob: 91f53077054e486546c0d020ada3092c84fd49e6 (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:etabeta
/**********************************************************************

 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