blob: 92bb842562a3281d7dbe8546982849ad88bbf324 (
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
|
// license:BSD-3-Clause
// copyright-holders:Barry Rodewald
/*
* isa_pds.h
*
* Created on: 31/01/2014
*/
#ifndef MAME_BUS_ISA_PDS_H
#define MAME_BUS_ISA_PDS_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, const XTAL &clock);
uint8_t ppi_r(offs_t offset);
void ppi_w(offs_t offset, uint8_t data);
protected:
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
virtual void device_stop() override;
// optional information overrides
virtual void device_add_mconfig(machine_config &config) override;
required_device<i8255_device> m_ppi;
};
DECLARE_DEVICE_TYPE(ISA8_PDS, isa8_pds_device)
#endif // MAME_BUS_ISA_PDS_H
|