blob: 6b680f21cbb4e537c52cd44a4a44235f3060ecb2 (
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
|
/***************************************************************************
Template for skeleton device
***************************************************************************/
#pragma once
#ifndef __PC9801_26DEV_H__
#define __PC9801_26DEV_H__
#include "machine/pic8259.h"
#include "sound/2203intf.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> pc9801_26_device
class pc9801_26_device : public device_t
{
public:
// construction/destruction
pc9801_26_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(opn_porta_r);
DECLARE_WRITE8_MEMBER(opn_portb_w);
DECLARE_READ8_MEMBER(pc9801_26_r);
DECLARE_WRITE8_MEMBER(pc9801_26_w);
// required_device<cpu_device> m_maincpu;
required_device<ym2203_device> m_opn;
protected:
// device-level overrides
virtual void device_validity_check(validity_checker &valid) const;
virtual void device_start();
virtual void device_reset();
virtual void device_config_complete() { m_shortname = "pc9801_26"; }
void install_device(offs_t start, offs_t end, offs_t mask, offs_t mirror, read8_delegate rhandler, write8_delegate whandler);
private:
UINT8 m_joy_sel;
};
// device type definition
extern const device_type PC9801_26;
//**************************************************************************
// GLOBAL VARIABLES
//**************************************************************************
#endif
|