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
92
93
94
95
96
97
98
99
100
101
102
103
104
|
// license:BSD-3-Clause
// copyright-holders:AJR
/*********************************************************************
InterLan NP600 Intelligent Protocol Processor
*********************************************************************/
#include "emu.h"
#include "np600.h"
#include "cpu/i86/i186.h"
#include "machine/74259.h"
#include "machine/gen_latch.h"
DEFINE_DEVICE_TYPE(NP600A3, np600a3_device, "np600a3", "InterLan NP600A-3 Intelligent Protocol Processor")
np600a3_device::np600a3_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock)
: device_t(mconfig, NP600A3, tag, owner, clock)
, device_isa16_card_interface(mconfig, *this)
, m_npcpu(*this, "npcpu")
, m_lcc(*this, "lcc")
{
}
void np600a3_device::device_start()
{
}
void np600a3_device::lcc_ca_w(u16 data)
{
m_lcc->ca(0);
m_lcc->ca(1);
}
WRITE_LINE_MEMBER(np600a3_device::host_int_w)
{
logerror("%s: Host interrupt %s\n", machine().describe_context(), state ? "asserted" : "cleared");
}
u16 np600a3_device::status_r()
{
return 0;
}
void np600a3_device::mem_map(address_map &map)
{
map(0x00000, 0x7ffff).ram().share("netram"); // GM71256-12 x16
map(0xc0000, 0xc0001).mirror(0xfffe).r("fromhost", FUNC(generic_latch_16_device::read));
map(0xc0000, 0xc0001).mirror(0xfffe).w("tohost", FUNC(generic_latch_16_device::write));
map(0xfc000, 0xfffff).rom().region("npcpu", 0);
}
void np600a3_device::io_map(address_map &map)
{
map(0x0000, 0x0001).w(FUNC(np600a3_device::lcc_ca_w));
map(0x0070, 0x007f).w("bitlatch", FUNC(ls259_device::write_a0));
map(0x0080, 0x0081).r(FUNC(np600a3_device::status_r));
}
void np600a3_device::lcc_map(address_map &map)
{
map(0x000000, 0x07ffff).ram().share("netram");
map(0xf80000, 0xffffff).ram().share("netram");
}
void np600a3_device::device_add_mconfig(machine_config &config)
{
I80186(config, m_npcpu, 16_MHz_XTAL);
m_npcpu->set_addrmap(AS_PROGRAM, &np600a3_device::mem_map);
m_npcpu->set_addrmap(AS_IO, &np600a3_device::io_map);
ls259_device &bitlatch(LS259(config, "bitlatch")); // U28
bitlatch.q_out_cb<1>().set(FUNC(np600a3_device::host_int_w));
bitlatch.q_out_cb<4>().set(m_lcc, FUNC(i82586_device::reset_w)).invert();
GENERIC_LATCH_16(config, "fromhost");
GENERIC_LATCH_16(config, "tohost");
I82586(config, m_lcc, 16_MHz_XTAL / 2); // clock presumed (20 MHz XTAL also present for SEEQ DQ8023A transceiver)
m_lcc->set_addrmap(0, &np600a3_device::lcc_map);
m_lcc->out_irq_cb().set(m_npcpu, FUNC(i80186_cpu_device::tmrin1_w));
}
ROM_START(np600a3)
ROM_REGION(0x4000, "npcpu", 0)
ROM_LOAD16_BYTE("258-0032-00_rev_ba.u38", 0x0000, 0x2000, CRC(84ccb317) SHA1(3ecc8e265336f5d3b0f276f18dd1b7001778f2c3))
ROM_LOAD16_BYTE("258-0033-00_rev_ba.u39", 0x0001, 0x2000, CRC(0e0f726c) SHA1(520773e235a826438b025381cd3861df86d4965d))
// Undumped small devices (mostly or all PLDs):
// 258-0037-00 REV AA (U17, 20 pins)
// 258-0027-01 REV AB (U20, 20 pins)
// 020701079BFA (U29, 16 pins)
// 258-0031-00 REV AC (U34, PAL20xx, 24 pins)
// 258-0030-00 REV AA (U36, 20 pins)
// 258-0028-01 REV AA (U44, 20 pins)
// 258-0029-01 REV AA (U46, 20 pins)
// 258-0089-00 REV AA (U48, 20 pins)
ROM_END
const tiny_rom_entry *np600a3_device::device_rom_region() const
{
return ROM_NAME(np600a3);
}
|