diff options
author | 2014-03-21 13:53:06 +0000 | |
---|---|---|
committer | 2014-03-21 13:53:06 +0000 | |
commit | 42c3a789cf81ca3e8c6478e4278302983043c7d1 (patch) | |
tree | 12532411fb60db9baf6887368e7d0f509e95aefb /src/emu/bus/scsi/d9060hd.h | |
parent | 6c58638ed44eef1adffe9734ed5efd888b7471d5 (diff) |
(MESS) Moved SCSI HBAs to emu/bus/scsi. (nw)
Diffstat (limited to 'src/emu/bus/scsi/d9060hd.h')
-rw-r--r-- | src/emu/bus/scsi/d9060hd.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/emu/bus/scsi/d9060hd.h b/src/emu/bus/scsi/d9060hd.h new file mode 100644 index 00000000000..e17e2238fe6 --- /dev/null +++ b/src/emu/bus/scsi/d9060hd.h @@ -0,0 +1,20 @@ +#pragma once + +#ifndef __D9060HD__ +#define __D9060HD__ + +#include "machine/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 |