summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99/hexbus/hx5102.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99/hexbus/hx5102.h')
-rw-r--r--src/devices/bus/ti99/hexbus/hx5102.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/devices/bus/ti99/hexbus/hx5102.h b/src/devices/bus/ti99/hexbus/hx5102.h
new file mode 100644
index 00000000000..1381ffd4c86
--- /dev/null
+++ b/src/devices/bus/ti99/hexbus/hx5102.h
@@ -0,0 +1,34 @@
+// license:LGPL-2.1+
+// copyright-holders:Michael Zapf
+/****************************************************************************
+
+ Hexbus floppy disk drive
+ HX5102
+
+ See hx5102.cpp for documentation
+
+ Michael Zapf
+ June 2017
+
+*****************************************************************************/
+
+#ifndef MAME_BUS_TI99_HEXBUS_HX5102_H
+#define MAME_BUS_TI99_HEXBUS_HX5102_H
+
+#pragma once
+
+#include "hexbus.h"
+
+namespace bus { namespace ti99 { namespace hexbus {
+
+class hx5102_device : public hexbus_attached_device
+{
+public:
+ hx5102_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+};
+
+} } } // end namespace bus::ti99::hexbus
+
+DECLARE_DEVICE_TYPE_NS(TI_HX5102, bus::ti99::hexbus, hx5102_device)
+
+#endif // MAME_BUS_TI99_HEXBUS_HX5102_H