summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/scsi/pc9801_sasi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/scsi/pc9801_sasi.h')
-rw-r--r--src/devices/bus/scsi/pc9801_sasi.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/devices/bus/scsi/pc9801_sasi.h b/src/devices/bus/scsi/pc9801_sasi.h
new file mode 100644
index 00000000000..44ef5f5e0cc
--- /dev/null
+++ b/src/devices/bus/scsi/pc9801_sasi.h
@@ -0,0 +1,20 @@
+// license:BSD-3-Clause
+// copyright-holders:smf
+#ifndef PC9801_SASI_H_
+#define PC9801_SASI_H_
+
+#include "scsihd.h"
+
+class pc9801_sasi_device : public scsihd_device
+{
+public:
+ // construction/destruction
+ pc9801_sasi_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+
+ virtual void ExecCommand();
+};
+
+// device type definition
+extern const device_type PC9801_SASI;
+
+#endif /* PC9801_SASI_H_ */