summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/rw5000/a5900.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/rw5000/a5900.h')
-rw-r--r--src/devices/cpu/rw5000/a5900.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/devices/cpu/rw5000/a5900.h b/src/devices/cpu/rw5000/a5900.h
new file mode 100644
index 00000000000..b6b59508578
--- /dev/null
+++ b/src/devices/cpu/rw5000/a5900.h
@@ -0,0 +1,32 @@
+// license:BSD-3-Clause
+// copyright-holders:hap
+/*
+
+ Rockwell A5900 MCU
+
+*/
+
+#ifndef MAME_CPU_RW5000_A5900_H
+#define MAME_CPU_RW5000_A5900_H
+
+#pragma once
+
+#include "a5000.h"
+
+
+class a5900_cpu_device : public a5000_cpu_device
+{
+public:
+ a5900_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+
+protected:
+ void program_512x8(address_map &map);
+
+ // opcode handlers
+ virtual void op_read() override;
+};
+
+
+DECLARE_DEVICE_TYPE(A5900, a5900_cpu_device)
+
+#endif // MAME_CPU_RW5000_A5900_H