summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/np600.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/np600.h')
-rw-r--r--src/devices/bus/isa/np600.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/devices/bus/isa/np600.h b/src/devices/bus/isa/np600.h
deleted file mode 100644
index 7831d804922..00000000000
--- a/src/devices/bus/isa/np600.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// 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