blob: e6033f52ca6101e09b233b57a32d69ba9d86c8bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*************************************************************************
*
* pc_joy.h
*
* joystick port
*
*************************************************************************/
#ifndef PC_JOY_H
#define PC_JOY_H
#include "emu.h"
#define MCFG_PC_JOY_ADD(_tag) \
MCFG_DEVICE_ADD(_tag, PC_JOY, 0)
class pc_joy_device : public device_t
{
public:
pc_joy_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
virtual ioport_constructor device_input_ports() const;
DECLARE_READ8_MEMBER(joy_port_r);
DECLARE_WRITE8_MEMBER(joy_port_w);
protected:
virtual void device_start() {}
private:
required_ioport m_btn;
required_ioport m_x1;
required_ioport m_y1;
required_ioport m_x2;
required_ioport m_y2;
attotime m_stime;
};
extern const device_type PC_JOY;
#endif /* PC_JOY_H */
|