summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/generic/carts.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-08 12:56:12 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-08 12:56:12 +0100
commit7c19aac60e12d6f5ea301bdb34d7826a01e0b06f (patch)
treef310d86aa2c6bfc19d115307dedde4eb0cd52dad /src/devices/bus/generic/carts.cpp
parenta57b46ae933badd7441ce1644711dbb851e2b504 (diff)
Rename *.c -> *.cpp in our source (nw)
Diffstat (limited to 'src/devices/bus/generic/carts.cpp')
-rw-r--r--src/devices/bus/generic/carts.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/devices/bus/generic/carts.cpp b/src/devices/bus/generic/carts.cpp
new file mode 100644
index 00000000000..23a079289c9
--- /dev/null
+++ b/src/devices/bus/generic/carts.cpp
@@ -0,0 +1,22 @@
+// license:BSD-3-Clause
+// copyright-holders:Fabio Priuli
+/**********************************************************************
+
+ Generic ROM / RAM socket slots
+
+ **********************************************************************/
+
+
+#include "carts.h"
+
+SLOT_INTERFACE_START(generic_plain_slot)
+ SLOT_INTERFACE_INTERNAL("rom", GENERIC_ROM_PLAIN)
+SLOT_INTERFACE_END
+
+SLOT_INTERFACE_START(generic_linear_slot)
+ SLOT_INTERFACE_INTERNAL("rom", GENERIC_ROM_LINEAR)
+SLOT_INTERFACE_END
+
+SLOT_INTERFACE_START(generic_romram_plain_slot)
+ SLOT_INTERFACE_INTERNAL("rom", GENERIC_ROMRAM_PLAIN)
+SLOT_INTERFACE_END