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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
// license:BSD-3-Clause
// copyright-holders:Sven Schnelle
#ifndef MAME_BUS_HPDIO_98643_H
#define MAME_BUS_HPDIO_98643_H
#pragma once
#include "hp_dio.h"
#include "machine/am79c90.h"
namespace bus::hp_dio {
static constexpr int REG_SWITCHES_REMOTE = 0x80;
static constexpr int REG_SWITCHES_SELECT_CODE_MASK = 0x1f;
static constexpr int REG_SWITCHES_SELECT_CODE_SHIFT = 0x00;
static constexpr int REG_SWITCHES_INT_LEVEL_MASK = 0x03;
static constexpr int REG_SWITCHES_INT_LEVEL_SHIFT = 0x05;
static constexpr uint16_t REG_ID = 0x15;
static constexpr uint16_t REG_STATUS_ACK = 0x04;
static constexpr uint16_t REG_SC_REV = 0x01;
static constexpr uint16_t REG_SC_LOCK = 0x08;
static constexpr uint16_t REG_SC_IP = 0x40;
static constexpr uint16_t REG_SC_IE = 0x80;
class dio16_98643_device :
public device_t,
public device_dio16_card_interface
{
public:
// construction/destruction
dio16_98643_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
dio16_98643_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
virtual ioport_constructor device_input_ports() const override;
virtual void device_add_mconfig(machine_config &config) override;
private:
required_device<am7990_device> m_lance;
required_ioport m_switches;
void addrmap(address_map &map);
void update_int();
int get_irq_line();
uint16_t sc_r();
void sc_w(uint16_t data);
uint16_t id_r();
void id_w(uint16_t data);
uint16_t novram_r(offs_t offset);
void novram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
DECLARE_WRITE_LINE_MEMBER(lance_int_w);
void lance_dma_out(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
uint16_t lance_dma_in(offs_t offset);
uint16_t m_novram[32] = {
0xfff0, 0xfff0, 0xfff0, 0xfff0,
0xfff0, 0xfff8, 0xfff0, 0xfff0,
0xfff0, 0xfff9, 0xfff0, 0xfff6,
0xfffa, 0xfff1, 0xffff, 0xfff1,
0xfff0, 0xfff0, 0xfff0, 0xfff0,
0xfff0, 0xfff0, 0xfff0, 0xfff0,
0xfff0, 0xfff0, 0xfff0, 0xfff0,
0xfff0, 0xfff0, 0xfffa, 0xfff9,
};
std::array<uint16_t, 8192> m_ram;
uint16_t m_sc;
bool m_installed_io;
};
} // namespace bus::hp_dio
// device type definition
DECLARE_DEVICE_TYPE_NS(HPDIO_98643, bus::hp_dio, dio16_98643_device)
#endif // MAME_BUS_HPDIO_98643_H
|