summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8500/h8532.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8500/h8532.h')
-rw-r--r--src/devices/cpu/h8500/h8532.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/devices/cpu/h8500/h8532.h b/src/devices/cpu/h8500/h8532.h
new file mode 100644
index 00000000000..71ec652a465
--- /dev/null
+++ b/src/devices/cpu/h8500/h8532.h
@@ -0,0 +1,37 @@
+// license:BSD-3-Clause
+// copyright-holders:AJR
+
+#ifndef MAME_CPU_H8500_H8532_H
+#define MAME_CPU_H8500_H8532_H
+
+#pragma once
+
+#include "h8500.h"
+
+class h8532_device : public h8500_device
+{
+protected:
+ h8532_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock);
+
+private:
+ void internal_map(address_map &map);
+};
+
+class hd6435328_device : public h8532_device
+{
+public:
+ // device type constructor
+ hd6435328_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+};
+
+class hd6475328_device : public h8532_device
+{
+public:
+ // device type constructor
+ hd6475328_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+};
+
+DECLARE_DEVICE_TYPE(HD6435328, hd6435328_device)
+DECLARE_DEVICE_TYPE(HD6475328, hd6475328_device)
+
+#endif // MAME_CPU_H8500_H8532_H