diff options
author | 2017-07-05 11:44:49 +0200 | |
---|---|---|
committer | 2017-11-26 17:41:27 +0100 | |
commit | 6caef2579a1490f05d28bcede731cbdd45fc5c65 (patch) | |
tree | 8055384e183be3cb27e7d0894ac53dc96c09e6fa /src/devices/cpu/h8/h8hd.cpp | |
parent | 34b222062c89adbeed822f56be6130421777e11f (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.cpp | 17 |
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) +{ +} |