blob: d21e13d2630f0939e71c165f5d3aa709dd668516 (
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
|
// license:BSD-3-Clause
// copyright-holders:AJR
#ifndef MAME_CPU_INTERDATA16_DASM16_H
#define MAME_CPU_INTERDATA16_DASM16_H
#pragma once
class interdata16_disassembler : public util::disasm_interface
{
public:
// construction/destruction
interdata16_disassembler();
protected:
// util::disasm_interface overrides
virtual u32 opcode_alignment() const override;
virtual offs_t disassemble(std::ostream &stream, offs_t pc, const data_buffer &opcodes, const data_buffer ¶ms) override;
private:
// formatting helpers
static void format_s16(std::ostream &stream, s16 halfword);
};
#endif // MAME_CPU_INTERDATA16_DASM16_H
|