summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mzr8300.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mzr8300.h')
-rw-r--r--src/mame/includes/mzr8300.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/mame/includes/mzr8300.h b/src/mame/includes/mzr8300.h
new file mode 100644
index 00000000000..29a5014d3d6
--- /dev/null
+++ b/src/mame/includes/mzr8300.h
@@ -0,0 +1,36 @@
+// license:BSD-3-Clause
+// copyright-holders:Joakim Larsson Edstrom
+/********************************************************************************
+ *
+ * mame/includes/mzr8105
+ *
+ ********************************************************************************/
+
+#ifndef MZR8300_H
+#define MZR8300_H
+#pragma once
+
+#include "emu.h"
+#include "bus/vme/vme.h"
+
+class vme_p1_mzr8300_device :
+ public device_t,
+ public device_vme_p1_card_interface
+{
+public:
+ // construction/destruction
+ vme_p1_mzr8300_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ vme_p1_mzr8300_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source);
+
+ // optional information overrides
+ virtual machine_config_constructor device_mconfig_additions() const override;
+
+ DECLARE_READ8_MEMBER(mzr8300_r);
+ DECLARE_WRITE8_MEMBER(mzr8300_w);
+protected:
+ // device-level overrides
+ virtual void device_start() override;
+ virtual void device_reset() override;
+};
+
+#endif // MZR8300_H