summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/dspvd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/dspvd.h')
-rw-r--r--src/devices/sound/dspvd.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/devices/sound/dspvd.h b/src/devices/sound/dspvd.h
new file mode 100644
index 00000000000..32f7cb35497
--- /dev/null
+++ b/src/devices/sound/dspvd.h
@@ -0,0 +1,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