summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vic20/user.cpp
blob: 998f45d80cc8ab399ae2eff8225f0bf8b7352ce8 (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
// license:BSD-3-Clause
// copyright-holders:smf
/**********************************************************************

    Commodore VIC-20 User Port emulation

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

#include "emu.h"
#include "user.h"

//-------------------------------------------------
//  SLOT_INTERFACE( vic20_user_port_cards )
//-------------------------------------------------

// slot devices
#include "4cga.h"
#include "vic1011.h"

void vic20_user_port_cards(device_slot_interface &device)
{
	device.option_add("4cga", C64_4CGA);
	device.option_add("rs232", VIC1011);
}