blob: 1d316204e6e3bb0be4ac87c12022bb14e82e7ef7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// license:BSD-3-Clause
// copyright-holders:Vas Crabb
/**********************************************************************
Sega Mega Mouse emulation
**********************************************************************/
#ifndef MAME_BUS_SMS_CTRL_MOUSE_H
#define MAME_BUS_SMS_CTRL_MOUSE_H
#pragma once
#include "smsctrl.h"
DECLARE_DEVICE_TYPE(SMS_MEGAMOUSE, device_sms_control_interface)
DECLARE_DEVICE_TYPE(SMS_SEGAMOUSE, device_sms_control_interface)
#endif // MAME_BUS_SMS_CTRL_MOUSE_H
|