1 // license:BSD-3-Clause
2 // copyright-holders:smf
3 /**********************************************************************
4 
5     Commodore 64 User Port emulation
6 
7 **********************************************************************/
8 
9 #include "emu.h"
10 #include "user.h"
11 
12 //-------------------------------------------------
13 //  SLOT_INTERFACE( c64_user_port_cards )
14 //-------------------------------------------------
15 
16 // slot devices
17 #include "4dxh.h"
18 #include "4ksa.h"
19 #include "4tba.h"
20 #include "bn1541.h"
21 #include "geocable.h"
22 #include "bus/vic20/4cga.h"
23 #include "bus/vic20/vic1011.h"
24 
c64_user_port_cards(device_slot_interface & device)25 void c64_user_port_cards(device_slot_interface &device)
26 {
27 	device.option_add("4cga", C64_4CGA);
28 	device.option_add("4dxh", C64_4DXH);
29 	device.option_add("4ksa", C64_4KSA);
30 	device.option_add("4tba", C64_4TBA);
31 	device.option_add("bn1541", C64_BN1541);
32 	device.option_add("geocable", C64_GEOCABLE);
33 	device.option_add("rs232", VIC1011);
34 }
35