summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/dspvd.h
blob: 6f934374c59d65cab17f0937e3de5fd091e964fa (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:Olivier Galibert

// Yamaha DSPV
//
// Audio dsp dedicated to acoustic simulation
//
// Disassembler

#ifndef MAME_SOUND_DSPVD_H
#define MAME_SOUND_DSPVD_H

#pragma once

class dspv_disassembler : public util::disasm_interface
{
public:
	dspv_disassembler();

	virtual u32 opcode_alignment() const override;
	virtual offs_t disassemble(std::ostream &stream, offs_t pc, const data_buffer &opcodes, const data_buffer &params) override;
};

#endif // MAME_SOUND_DSPVD_H