summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/generic/carts.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/bus/generic/carts.h')
-rw-r--r--src/emu/bus/generic/carts.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/emu/bus/generic/carts.h b/src/emu/bus/generic/carts.h
new file mode 100644
index 00000000000..efef8a5dfe0
--- /dev/null
+++ b/src/emu/bus/generic/carts.h
@@ -0,0 +1,21 @@
+/**********************************************************************
+
+ Generic ROM/RAM socket slots
+
+**********************************************************************/
+
+#pragma once
+
+#ifndef __GENERIC_CARTS_H__
+#define __GENERIC_CARTS_H__
+
+#include "emu.h"
+
+#include "rom.h"
+#include "ram.h"
+
+
+SLOT_INTERFACE_EXTERN( generic_plain_slot );
+SLOT_INTERFACE_EXTERN( generic_linear_slot );
+
+#endif