// license:BSD-3-Clause // copyright-holders:Olivier Galibert // Yamaha DSPV // // Audio dsp dedicated to acoustic simulation // // Disassembler, placeholder #include "emu.h" #include "dspvd.h" dspv_disassembler::dspv_disassembler() { } u32 dspv_disassembler::opcode_alignment() const { return 1; } offs_t dspv_disassembler::disassemble(std::ostream &stream, offs_t pc, const data_buffer &opcodes, const data_buffer ¶ms) { u64 opc = opcodes.r64(pc); u64 mode = (params.r64(pc) >> 32) & 7; util::stream_format(stream, "%x%016x", mode, opc); return 1 | SUPPORTED; }