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.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/devices/bus/isa/np600.h b/src/devices/bus/isa/np600.h
index 7831d804922..e1068b54758 100644
--- a/src/devices/bus/isa/np600.h
+++ b/src/devices/bus/isa/np600.h
@@ -12,6 +12,7 @@
#pragma once
#include "isa.h"
+#include "machine/i82586.h"
class np600a3_device : public device_t, public device_isa16_card_interface
{
@@ -26,12 +27,16 @@ protected:
virtual const tiny_rom_entry *device_rom_region() const override;
private:
+ void lcc_ca_w(u16 data);
+ DECLARE_WRITE_LINE_MEMBER(lcc_reset_w);
u16 status_r();
void mem_map(address_map &map);
void io_map(address_map &map);
+ void lcc_map(address_map &map);
required_device<cpu_device> m_npcpu;
+ required_device<i82586_device> m_lcc;
};
DECLARE_DEVICE_TYPE(NP600A3, np600a3_device)