summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8hd.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2017-07-05 11:44:49 +0200
committer Olivier Galibert <galibert@pobox.com>2017-11-26 17:41:27 +0100
commit6caef2579a1490f05d28bcede731cbdd45fc5c65 (patch)
tree8055384e183be3cb27e7d0894ac53dc96c09e6fa /src/devices/cpu/h8/h8hd.cpp
parent34b222062c89adbeed822f56be6130421777e11f (diff)
dvdisasm: Overhaul [O. Galibert]
Disassemblers are now independant classes. Not only the code is cleaner, but unidasm has access to all the cpu cores again. The interface to the disassembly method has changed from byte buffers to objects that give a result to read methods. This also adds support for lfsr and/or paged PCs.
Diffstat (limited to 'src/devices/cpu/h8/h8hd.cpp')
-rw-r--r--src/devices/cpu/h8/h8hd.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/devices/cpu/h8/h8hd.cpp b/src/devices/cpu/h8/h8hd.cpp
new file mode 100644
index 00000000000..c6cb3238784
--- /dev/null
+++ b/src/devices/cpu/h8/h8hd.cpp
@@ -0,0 +1,17 @@
+// license:BSD-3-Clause
+// copyright-holders:Olivier Galibert
+/***************************************************************************
+
+ h8d.h
+
+ H8-300H base cpu emulation, disassembler
+
+***************************************************************************/
+
+#include "emu.h"
+#include "h8hd.h"
+#include "cpu/h8/h8hd.hxx"
+
+h8h_disassembler::h8h_disassembler() : h8_disassembler(disasm_entries)
+{
+}