blob: 6983ec1d7fc3246a0326e64815b77118201392c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// license:BSD-3-Clause
// copyright-holders:Karl Stenerud
#include "emu.h"
#include "m68010.h"
#include "m68kdasm.h"
DEFINE_DEVICE_TYPE(M68010, m68010_device, "m68010", "Motorola MC68010")
std::unique_ptr<util::disasm_interface> m68010_device::create_disassembler()
{
return std::make_unique<m68k_disassembler>(m68k_disassembler::TYPE_68010);
}
m68010_device::m68010_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock)
: m68000_base_device(mconfig, tag, owner, clock, M68010, 16,24)
{
}
void m68010_device::device_start()
{
m68000_base_device::device_start();
init_cpu_m68010();
}
|