blob: 10b6fdedf3caecaeb4e94d250a2ded3bfa8c4607 (
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:Wilbert Pol
/**********************************************************************
MSX Mouse emulation
**********************************************************************/
#ifndef MAME_BUS_MSX_CTRL_MOUSE_H
#define MAME_BUS_MSX_CTRL_MOUSE_H
#pragma once
#include "ctrl.h"
DECLARE_DEVICE_TYPE(MSX_MOUSE, device_msx_general_purpose_port_interface)
#endif // MAME_BUS_MSX_CTRL_MOUSE_H
|