blob: 0ef1d978e908df8549b37e453e90ec29f16760d2 (
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
|
// license:BSD-3-Clause
// copyright-holders:Curt Coder
/**********************************************************************
Atari Portfolio HPC-102 serial interface emulation
**********************************************************************/
#pragma once
#ifndef __HPC102__
#define __HPC102__
#include "emu.h"
#include "exp.h"
#include "bus/rs232/rs232.h"
#include "machine/ins8250.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> hpc102_t
class hpc102_t : public device_t,
public device_portfolio_expansion_slot_interface
{
public:
// construction/destruction
hpc102_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const override;
protected:
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
// device_portfolio_expansion_slot_interface overrides
private:
required_device<ins8250_device> m_uart;
};
// device type definition
extern const device_type HPC102;
#endif
/*
*/
|