summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/dspvd.h
blob: 32f7cb354973840c00e97bd143181c11827cb099 (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 DEVICES_SOUND_DSPVD_H
#define DEVICES_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