summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/es5510/es5510d.cpp
blob: d563019f4863e6c814d1b4ad37bb65f3404f85a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// license:BSD-3-Clause
// copyright-holders:Christian Brunschen
/***************************************************************************
 *
 *   es5510.c - Ensoniq ES5510 (ESP) emulation
 *   by Christian Brunschen
 *
 ***************************************************************************/

#include "emu.h"
#include "es5510d.h"

u32 es5510_disassembler::opcode_alignment() const
{
	return 1;
}

offs_t es5510_disassembler::disassemble(std::ostream &stream, offs_t pc, const data_buffer &opcodes, const data_buffer &params)
{
	return 1;
}