summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/segashiobd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/segashiobd.h')
-rw-r--r--src/mame/machine/segashiobd.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/mame/machine/segashiobd.h b/src/mame/machine/segashiobd.h
new file mode 100644
index 00000000000..c1bec8871f9
--- /dev/null
+++ b/src/mame/machine/segashiobd.h
@@ -0,0 +1,29 @@
+// license:BSD-3-Clause
+// copyright-holders:Samuele Zannoli
+#ifndef MAME_MACHINE_SEGASHIOBD_H
+#define MAME_MACHINE_SEGASHIOBD_H
+
+#pragma once
+
+#include "cpu/sh/sh4.h"
+
+DECLARE_DEVICE_TYPE(SEGA837_14438, sega_837_14438_device)
+
+class sega_837_14438_device : public device_t
+{
+public:
+ // construction/destruction
+ sega_837_14438_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ virtual const tiny_rom_entry *device_rom_region() const override;
+
+protected:
+ virtual void device_start() override;
+ virtual void device_reset() override;
+ virtual void device_add_mconfig(machine_config &config) override;
+ void sh4_map(address_map &map);
+
+private:
+ required_device<sh4_device> m_maincpu;
+};
+
+#endif // MAME_MACHINE_SEGASHIOBD_H