summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/cop400/cop424ds.h
blob: 8ebaa48b8297a422cbb3ac1bfc8731f581e14efb (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
25
26
// license:BSD-3-Clause
// copyright-holders:Curt Coder
/***************************************************************************

    cop424ds.h

    National Semiconductor COP424 disassembler.

***************************************************************************/

#ifndef MAME_CPU_COP400_COP424DS_H
#define MAME_CPU_COP400_COP424DS_H

#pragma once

class cop424_disassembler : public util::disasm_interface
{
public:
	cop424_disassembler() = default;
	virtual ~cop424_disassembler() = default;

	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_CPU_COP400_COP424DS_H