diff options
author | 2019-01-26 14:30:36 -0500 | |
---|---|---|
committer | 2019-01-26 14:30:36 -0500 | |
commit | 68735745b0ef53b0cd3b3a6b4cd70d36ae81d81c (patch) | |
tree | 9b96ae0d00bf5d7cb68f6de3e0ceaf565275a701 /src/devices/bus/isa/np600.h | |
parent | ea53f9cb91abe4766c12627adbebdc395b71171b (diff) |
New skeleton ISA16 device: InterLan NP600A-3 Intelligent Protocol Processor [modem7, minuszerodegrees.net]
Diffstat (limited to 'src/devices/bus/isa/np600.h')
-rw-r--r-- | src/devices/bus/isa/np600.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/devices/bus/isa/np600.h b/src/devices/bus/isa/np600.h new file mode 100644 index 00000000000..3b39b5a0c61 --- /dev/null +++ b/src/devices/bus/isa/np600.h @@ -0,0 +1,36 @@ +// 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: + void mem_map(address_map &map); + + required_device<cpu_device> m_npcpu; +}; + +DECLARE_DEVICE_TYPE(NP600A3, np600a3_device) + +#endif // MAME_BUS_ISA_NP600_H |