summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8s2000.cpp
blob: 41279505e6966c2a3fb0fde2450312b649829a1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#include "emu.h"
#include "h8s2000.h"
#include "h8s2000d.h"

h8s2000_device::h8s2000_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, address_map_constructor map_delegate) :
	h8h_device(mconfig, type, tag, owner, clock, map_delegate)
{
	has_exr = true;
}

std::unique_ptr<util::disasm_interface> h8s2000_device::create_disassembler()
{
	return std::make_unique<h8s2000_disassembler>();
}

#include "cpu/h8/h8s2000.hxx"