summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/xsu_cards.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/xsu_cards.h')
-rw-r--r--src/devices/bus/isa/xsu_cards.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/devices/bus/isa/xsu_cards.h b/src/devices/bus/isa/xsu_cards.h
new file mode 100644
index 00000000000..8ddd30f173d
--- /dev/null
+++ b/src/devices/bus/isa/xsu_cards.h
@@ -0,0 +1,37 @@
+// license:BSD-3-Clause
+// copyright-holders:Sergey Svishchev
+/**********************************************************************
+
+ ISA bus cards for ex-USSR PC clones
+
+**********************************************************************/
+
+#pragma once
+
+#ifndef __XSU_CARDS_H__
+#define __XSU_CARDS_H__
+
+#include "emu.h"
+
+#include "cga.h"
+// storage
+#include "mc1502_fdc.h"
+#include "p1_fdc.h"
+#include "p1_hdc.h"
+
+// misc
+#include "mc1502_rom.h"
+#include "p1_rom.h"
+
+// non-native
+#include "com.h"
+#include "xtide.h"
+#include "lpt.h"
+
+// supported devices
+SLOT_INTERFACE_EXTERN( p1_isa8_cards );
+SLOT_INTERFACE_EXTERN( mc1502_isa8_cards );
+SLOT_INTERFACE_EXTERN( ec184x_isa8_cards );
+SLOT_INTERFACE_EXTERN( iskr103x_isa8_cards );
+
+#endif // __XSU_CARDS_H__