blob: e7c7138bd50fb48127cd097d14fcdde17fe8c55d (
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
|
// license:BSD-3-Clause
// copyright-holders:smf
/**********************************************************************
Commodore 64 User Port emulation
**********************************************************************/
#include "emu.h"
#include "user.h"
//-------------------------------------------------
// SLOT_INTERFACE( c64_user_port_cards )
//-------------------------------------------------
// slot devices
#include "4dxh.h"
#include "4ksa.h"
#include "4tba.h"
#include "bn1541.h"
#include "geocable.h"
#include "bus/vic20/4cga.h"
#include "bus/vic20/vic1011.h"
void c64_user_port_cards(device_slot_interface &device)
{
device.option_add("4cga", C64_4CGA);
device.option_add("4dxh", C64_4DXH);
device.option_add("4ksa", C64_4KSA);
device.option_add("4tba", C64_4TBA);
device.option_add("bn1541", C64_BN1541);
device.option_add("geocable", C64_GEOCABLE);
device.option_add("rs232", VIC1011);
}
|