summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mzr8105.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mzr8105.h')
-rw-r--r--src/mame/includes/mzr8105.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/mame/includes/mzr8105.h b/src/mame/includes/mzr8105.h
new file mode 100644
index 00000000000..6b597ff4e25
--- /dev/null
+++ b/src/mame/includes/mzr8105.h
@@ -0,0 +1,30 @@
+// license:BSD-3-Clause
+// copyright-holders:Joakim Larsson Edstrom
+/********************************************************************************
+ *
+ * mame/includes/mzr8105
+ *
+ ********************************************************************************/
+
+#ifndef MZR8105_H
+#define MZR8105_H
+#pragma once
+
+#include "bus/vme/vme.h"
+
+class mzr8105_state : public driver_device
+{
+public:
+mzr8105_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device (mconfig, type, tag)
+ ,m_maincpu (*this, "maincpu")
+ {
+ }
+
+ virtual void machine_start() override;
+private:
+ required_device<cpu_device> m_maincpu;
+};
+
+
+#endif // MZR8105_H