summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/isa/pds.h
blob: a05363de39996f8e39720923cdf342a8af418938 (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
// license:???
// copyright-holders:???
/*
 * isa_pds.h
 *
 *  Created on: 31/01/2014
 */

#ifndef ISA_PDS_H_
#define ISA_PDS_H_

#include "emu.h"
#include "isa.h"
#include "machine/i8255.h"

class isa8_pds_device :
		public device_t,
		public device_isa8_card_interface
{
public:
		isa8_pds_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);

		DECLARE_READ8_MEMBER(ppi_r);
		DECLARE_WRITE8_MEMBER(ppi_w);

		// optional information overrides
		virtual machine_config_constructor device_mconfig_additions() const;

		required_device<i8255_device> m_ppi;
protected:
		// device-level overrides
		virtual void device_start();
		virtual void device_reset();
		virtual void device_stop();

};

extern const device_type ISA8_PDS;

#endif /* ISA_PDS_H_ */