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/omti5100.h | |
parent | e92ac9e0fa8e99869894bea00589bbb526be30aa (diff) |
Move all devices into separate part of src tree (nw)
Diffstat (limited to 'src/devices/bus/scsi/omti5100.h')
-rw-r--r-- | src/devices/bus/scsi/omti5100.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/devices/bus/scsi/omti5100.h b/src/devices/bus/scsi/omti5100.h new file mode 100644 index 00000000000..9c9e1e5444c --- /dev/null +++ b/src/devices/bus/scsi/omti5100.h @@ -0,0 +1,30 @@ +// license:BSD-3-Clause +// copyright-holders:smf +#ifndef OMTI5100_H_ +#define OMTI5100_H_ + +#include "emu.h" +#include "scsi.h" +#include "scsihd.h" +#include "imagedev/harddriv.h" + +class omti5100_device : public scsihd_device +{ +public: + omti5100_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + + virtual machine_config_constructor device_mconfig_additions() const; + //virtual const rom_entry *device_rom_region() const; + + virtual void ExecCommand(); + virtual void ReadData( UINT8 *data, int dataLength ); + void device_start(); + +private: + required_device<harddisk_image_device> m_image0; + required_device<harddisk_image_device> m_image1; +}; + +extern const device_type OMTI5100; + +#endif /* OMTI5100_H_ */ |