blob: 7831d80492263354302b546a6b8182ebce4f24d2 (
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:AJR
/*********************************************************************
InterLan NP600 Intelligent Protocol Processor
*********************************************************************/
#ifndef MAME_BUS_ISA_NP600_H
#define MAME_BUS_ISA_NP600_H
#pragma once
#include "isa.h"
class np600a3_device : public device_t, public device_isa16_card_interface
{
public:
np600a3_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
static constexpr feature_type unemulated_features() { return feature::LAN; }
protected:
virtual void device_start() override;
virtual void device_add_mconfig(machine_config &config) override;
virtual const tiny_rom_entry *device_rom_region() const override;
private:
u16 status_r();
void mem_map(address_map &map);
void io_map(address_map &map);
required_device<cpu_device> m_npcpu;
};
DECLARE_DEVICE_TYPE(NP600A3, np600a3_device)
#endif // MAME_BUS_ISA_NP600_H
|