summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/segabb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/segabb.h')
-rw-r--r--src/mame/machine/segabb.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/mame/machine/segabb.h b/src/mame/machine/segabb.h
new file mode 100644
index 00000000000..fefad6163a7
--- /dev/null
+++ b/src/mame/machine/segabb.h
@@ -0,0 +1,27 @@
+// Lindbergh Sega baseboard
+
+#ifndef SEGABB_H
+#define SEGABB_H
+
+#include "machine/pci.h"
+
+#define MCFG_SEGA_LINDBERGH_BASEBOARD_ADD(_tag) \
+ MCFG_PCI_DEVICE_ADD(_tag, SEGA_LINDBERGH_BASEBOARD, 0x105718c1, 0x10, 0x068000, 0x11db067b)
+
+class sega_lindbergh_baseboard_device : public pci_device {
+public:
+ sega_lindbergh_baseboard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+
+protected:
+ virtual void device_start();
+ virtual void device_reset();
+
+private:
+ DECLARE_ADDRESS_MAP(map1, 32);
+ DECLARE_ADDRESS_MAP(map2, 32);
+ DECLARE_ADDRESS_MAP(map3, 32);
+};
+
+extern const device_type SEGA_LINDBERGH_BASEBOARD;
+
+#endif