blob: 5908a5a75c7631fb02df90eb7d48dfc49fb9a482 (
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
|
// license:BSD-3-Clause
// copyright-holders:Barry Rodewald
/*
* cpc_pds.h -- CPC interface hardware for the Programmers Development System
*
* Created on: 10/02/2014
*
* Contains a Z80 PIO used to communicate with PC-side hardware (8-bit ISA card containing an 8255 PPI),
* connected via a 16-pin cable. Although it would seem that the C64 has a different cable that directly
* interfaces with the user port.
*
* The Z80 PIO is mapped to the CPC at:
* FBEC Z80 PIO Port A Data (8bit data to/from PC)
* FBED Z80 PIO Port B Data (handshake to/from PC)
* FBEE Z80 PIO Port A Control
* FBEF Z80 PIO Port B Control
*
* More info: http://cpcwiki.eu/index.php/PDS_development_system
*
* TODO: Come up with some way to connect two instances of MESS, one running the PC software, the other
* running the target side
*/
#ifndef MAME_BUS_CPC_CPC_PDS_H
#define MAME_BUS_CPC_CPC_PDS_H
#pragma once
#include "cpcexp.h"
#include "machine/z80pio.h"
class cpc_pds_device : public device_t,
public device_cpc_expansion_card_interface
{
public:
// construction/destruction
cpc_pds_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
DECLARE_READ8_MEMBER(pio_r);
DECLARE_WRITE8_MEMBER(pio_w);
protected:
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
// optional information overrides
virtual void device_add_mconfig(machine_config &config) override;
private:
cpc_expansion_slot_device *m_slot;
required_device<z80pio_device> m_pio;
};
// device type definition
DECLARE_DEVICE_TYPE(CPC_PDS, cpc_pds_device)
#endif // MAME_BUS_CPC_CPC_PDS_H
|