blob: 04257f60a385da25414fe02db5902d1087edd0b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**********************************************************************
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
|