blob: 7c9c6ed24b5633cc9eab5522f6ac99c79596fb53 (
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:smf
/**********************************************************************
Commodore Plus/4 User Port emulation
**********************************************************************/
#include "user.h"
//-------------------------------------------------
// SLOT_INTERFACE( plus4_user_port_cards )
//-------------------------------------------------
// slot devices
#include "diag264_lb_user.h"
#include "bus/vic20/vic1011.h"
SLOT_INTERFACE_START( plus4_user_port_cards )
SLOT_INTERFACE("diag264", DIAG264_USER_PORT_LOOPBACK)
SLOT_INTERFACE("rs232", VIC1011)
SLOT_INTERFACE_END
|