summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/shark.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ieee488/shark.h')
-rw-r--r--src/devices/bus/ieee488/shark.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/devices/bus/ieee488/shark.h b/src/devices/bus/ieee488/shark.h
new file mode 100644
index 00000000000..d5e2f1fe1f8
--- /dev/null
+++ b/src/devices/bus/ieee488/shark.h
@@ -0,0 +1,52 @@
+// license:BSD-3-Clause
+// copyright-holders:Curt Coder
+/**********************************************************************
+
+ Mator Systems SHARK Intelligent Winchester Disc Subsystem emulation
+
+ 35MB PRIAM DISKOS 3450 8" Winchester Hard Disk (-chs 525,5,? -ss ?)
+
+**********************************************************************/
+
+#pragma once
+
+#ifndef __SHARK__
+#define __SHARK__
+
+#include "ieee488.h"
+
+
+
+//**************************************************************************
+// TYPE DEFINITIONS
+//**************************************************************************
+
+// ======================> mshark_device
+
+class mshark_device : public device_t,
+ public device_ieee488_interface
+{
+public:
+ // construction/destruction
+ mshark_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+
+ // optional information overrides
+ virtual const rom_entry *device_rom_region() const;
+ virtual machine_config_constructor device_mconfig_additions() const;
+ virtual ioport_constructor device_input_ports() const;
+
+protected:
+ // device-level overrides
+ virtual void device_start();
+
+private:
+ required_device<cpu_device> m_maincpu;
+};
+
+
+// device type definition
+extern const device_type SHARK;
+
+
+
+#endif