blob: 83801facdf89272a22e786bfb7eb46916d3aa072 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#include "emu.h"
#include "h8h.h"
#include "h8hd.h"
h8h_device::h8h_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, address_map_constructor map_delegate) :
h8_device(mconfig, type, tag, owner, clock, map_delegate)
{
m_supports_advanced = true;
m_mode_advanced = true;
}
std::unique_ptr<util::disasm_interface> h8h_device::create_disassembler()
{
return std::make_unique<h8h_disassembler>();
}
#include "cpu/h8/h8h.hxx"
|