blob: a1ce0e2814f2e731922f6e0e9887a01cc9c1b9a9 (
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
|
// license:BSD-3-Clause
// copyright-holders:Karl Stenerud
#include "emu.h"
#include "fscpu32.h"
#include "m68kdasm.h"
std::unique_ptr<util::disasm_interface> fscpu32_device::create_disassembler()
{
return std::make_unique<m68k_disassembler>(m68k_disassembler::TYPE_CPU32);
}
fscpu32_device::fscpu32_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock,
const device_type type, address_map_constructor internal_map)
: m68000_base_device(mconfig, tag, owner, clock, type, 16,32, internal_map)
{
}
void fscpu32_device::device_start()
{
m68000_base_device::device_start();
init_cpu_fscpu32();
}
|