diff options
author | 2015-09-13 08:41:44 +0200 | |
---|---|---|
committer | 2015-09-13 08:41:44 +0200 | |
commit | f88cefad27a1737c76e09d99c9fb43e173506081 (patch) | |
tree | 2d8167d03579c46e226471747eb4407bd00ed6fa /src/devices/bus/scsi/d9060hd.h | |
parent | e92ac9e0fa8e99869894bea00589bbb526be30aa (diff) |
Move all devices into separate part of src tree (nw)
Diffstat (limited to 'src/devices/bus/scsi/d9060hd.h')
-rw-r--r-- | src/devices/bus/scsi/d9060hd.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/devices/bus/scsi/d9060hd.h b/src/devices/bus/scsi/d9060hd.h new file mode 100644 index 00000000000..f3fa504cf81 --- /dev/null +++ b/src/devices/bus/scsi/d9060hd.h @@ -0,0 +1,22 @@ +// license:BSD-3-Clause +// copyright-holders:smf +#pragma once + +#ifndef __D9060HD__ +#define __D9060HD__ + +#include "scsihd.h" + +class d9060hd_device : public scsihd_device +{ +public: + // construction/destruction + d9060hd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + + virtual void ExecCommand(); +}; + +// device type definition +extern const device_type D9060HD; + +#endif |