summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/abc830.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/abc830.h')
-rw-r--r--src/mess/machine/abc830.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/mess/machine/abc830.h b/src/mess/machine/abc830.h
new file mode 100644
index 00000000000..6012090606d
--- /dev/null
+++ b/src/mess/machine/abc830.h
@@ -0,0 +1,44 @@
+#pragma once
+
+#ifndef __ABC830__
+#define __ABC830__
+
+
+#include "emu.h"
+#include "formats/basicdsk.h"
+#include "imagedev/flopdrv.h"
+
+
+
+//**************************************************************************
+// INTERFACE CONFIGURATION MACROS
+//**************************************************************************
+
+#define MCFG_ABC830_ADD() \
+ MCFG_LEGACY_FLOPPY_2_DRIVES_ADD(abc830_floppy_interface)
+
+#define MCFG_ABC832_ADD() \
+ MCFG_LEGACY_FLOPPY_2_DRIVES_ADD(abc832_floppy_interface)
+
+#define MCFG_ABC834_ADD() \
+ MCFG_LEGACY_FLOPPY_2_DRIVES_ADD(abc832_floppy_interface)
+
+#define MCFG_ABC838_ADD() \
+ MCFG_LEGACY_FLOPPY_2_DRIVES_ADD(abc838_floppy_interface)
+
+
+
+//**************************************************************************
+// TYPE DEFINITIONS
+//**************************************************************************
+
+// floppy configuration
+extern const floppy_interface abc830_floppy_interface;
+extern const floppy_interface abc832_floppy_interface;
+extern const floppy_interface abc834_floppy_interface;
+extern const floppy_interface abc838_floppy_interface;
+extern const floppy_interface fd2_floppy_interface;
+
+
+
+#endif