summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vtech/ioexp/carts.cpp
blob: 86209ad35f86747c7cef7b4ca6b378b60e1e8df9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// license:GPL-2.0+
// copyright-holders:Dirk Best
/***************************************************************************

    VTech Laser/VZ I/O Expansion Slot Devices

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

#include "emu.h"
#include "carts.h"

#include "joystick.h"
#include "printer.h"


void vtech_ioexp_slot_carts(device_slot_interface &device)
{
	device.option_add("joystick", VTECH_JOYSTICK_INTERFACE);
	device.option_add("printer", VTECH_PRINTER_INTERFACE);
}