summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/z80/z80ndasm.h
blob: 7ae021ced93861c7b5a4c59b1e8fde0f9e259f7d (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
// license:BSD-3-Clause
/*****************************************************************************
 *
 *   Z80N disassembler
 *
 *****************************************************************************/

#ifndef MAME_CPU_Z80_Z80NDASM_H
#define MAME_CPU_Z80_Z80NDASM_H

#pragma once

#include "z80dasm.h"

class z80n_disassembler : public z80_disassembler
{
protected:
	static const z80dasm mnemonic_ed_n[256];

	virtual const z80dasm &get_mnemonic_ed(u8 opcode) override { return mnemonic_ed_n[opcode]; }
};

#endif