blob: 3d749e5480fa4d0168ec303806938b0694ce4c79 (
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, uint32_t clock, address_map_constructor map_delegate) :
h8_device(mconfig, type, tag, owner, clock, false, map_delegate)
{
supports_advanced = true;
mode_advanced = true;
}
util::disasm_interface *h8h_device::create_disassembler()
{
return new h8h_disassembler;
}
#include "cpu/h8/h8h.hxx"
|