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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// license:BSD-3-Clause
// copyright-holders:Angelo Salese, ElSemi, Ville Linde
#ifndef MAME_CPU_MB86235_MB86235D_H
#define MAME_CPU_MB86235_MB86235D_H
#pragma once
class mb86235_disassembler : public util::disasm_interface
{
public:
mb86235_disassembler() = default;
virtual ~mb86235_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 ¶ms) override;
private:
static char const *const regname[128];
static char const *const db_mnemonic[64];
static char const *const dbn_mnemonic[64];
static char const *const dc_mnemonic[64];
static char const *const dcn_mnemonic[64];
static char const *const mi1_field[16];
static char const *const mi2_field[32];
static char const *const mo_field[32];
static char const *const ai1_field[16];
static char const *const ai2_field[32];
static char const *const ai2f_field[32];
void dasm_ea(std::ostream &stream, int md, int arx, int ary, int disp);
void dasm_alu_mul(std::ostream &stream, uint64_t opcode, bool twoop);
offs_t dasm_control(std::ostream &stream, uint32_t pc, uint64_t opcode);
void dasm_double_xfer1(std::ostream &stream, uint64_t opcode);
void dasm_xfer1(std::ostream &stream, uint64_t opcode);
void dasm_double_xfer2_field(std::ostream &stream, int sd, bool isbbus, uint32_t field);
void dasm_double_xfer2(std::ostream &stream, uint64_t opcode);
void dasm_xfer2(std::ostream &stream, uint64_t opcode);
void dasm_xfer3(std::ostream &stream, uint64_t opcode);
};
#endif
|