blob: db9b5c270b79ab3bc0e0a31f42d5b7a4bdcbabbe (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/*
* symbfac2.h
*
* Created on: 2/08/2014
*/
#ifndef SYMBFAC2_H_
#define SYMBFAC2_H_
#include "emu.h"
#include "machine/ataintf.h"
#include "machine/ds128x.h"
#include "cpcexp.h"
class cpc_symbiface2_device : public device_t,
public device_cpc_expansion_card_interface
{
public:
// construction/destruction
cpc_symbiface2_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const;
virtual ioport_constructor device_input_ports() const;
DECLARE_READ8_MEMBER(ide_cs0_r);
DECLARE_WRITE8_MEMBER(ide_cs0_w);
DECLARE_READ8_MEMBER(ide_cs1_r);
DECLARE_WRITE8_MEMBER(ide_cs1_w);
DECLARE_READ8_MEMBER(rtc_r);
DECLARE_WRITE8_MEMBER(rtc_w);
DECLARE_READ8_MEMBER(mouse_r);
DECLARE_INPUT_CHANGED_MEMBER(mouse_change_x);
DECLARE_INPUT_CHANGED_MEMBER(mouse_change_y);
DECLARE_INPUT_CHANGED_MEMBER(mouse_change_buttons);
enum
{
PS2_MOUSE_IDLE = 0,
PS2_MOUSE_X,
PS2_MOUSE_Y,
PS2_MOUSE_BUTTONS,
PS2_MOUSE_SCROLL
};
protected:
// device-level overrides
virtual void device_start();
virtual void device_reset();
private:
//cpc_expansion_slot_device *m_slot;
required_device<ata_interface_device> m_ide;
required_device<ds12885_device> m_rtc;
required_ioport m_mouse_x;
required_ioport m_mouse_y;
required_ioport m_mouse_buttons;
bool m_iohigh;
UINT16 m_ide_data;
UINT8 m_mouse_state;
UINT8 m_input_x;
UINT8 m_input_y;
};
// device type definition
extern const device_type CPC_SYMBIFACE2;
#endif /* SYMBFAC2_H_ */
|