summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8500/h8520.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-04-04 17:21:59 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-04-04 17:21:59 -0400
commit9abc6733ba12420392bf6bca2540c00ea5ea77e4 (patch)
tree0b2182becd0e84de6ca15b1bca83913e081e07ea /src/devices/cpu/h8500/h8520.h
parent7339d77c024e461518ecaa69440e347d3e74e739 (diff)
Add H8/500 disassembler and skeleton CPU device family
alesis_qs.cpp: Document XTALs; replace legacy MCFG in comments (nw) picno.cpp: Replace legacy MCFG in comments (nw)
Diffstat (limited to 'src/devices/cpu/h8500/h8520.h')
-rw-r--r--src/devices/cpu/h8500/h8520.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/devices/cpu/h8500/h8520.h b/src/devices/cpu/h8500/h8520.h
new file mode 100644
index 00000000000..fc8795e7425
--- /dev/null
+++ b/src/devices/cpu/h8500/h8520.h
@@ -0,0 +1,29 @@
+// license:BSD-3-Clause
+// copyright-holders:AJR
+
+#ifndef MAME_CPU_H8500_H8520_H
+#define MAME_CPU_H8500_H8520_H
+
+#pragma once
+
+#include "h8500.h"
+
+class h8520_device : public h8500_device
+{
+protected:
+ h8520_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock);
+
+private:
+ void internal_map(address_map &map);
+};
+
+class hd6435208_device : public h8520_device
+{
+public:
+ // device type constructor
+ hd6435208_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+};
+
+DECLARE_DEVICE_TYPE(HD6435208, hd6435208_device)
+
+#endif // MAME_CPU_H8500_H8520_H