target: add generic Xtensa LX support
[fw/openocd] / src / target / a64_disassembler.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 /***************************************************************************
4  *   Copyright (C) 2019 by Mete Balci                                      *
5  *   metebalci@gmail.com                                                   *
6  ***************************************************************************/
7
8 #ifndef OPENOCD_TARGET_AARCH64_DISASSEMBLER_H
9 #define OPENOCD_TARGET_AARCH64_DISASSEMBLER_H
10
11 #include "target.h"
12
13 int a64_disassemble(
14                 struct command_invocation *cmd,
15                 struct target *target,
16                 target_addr_t address,
17                 size_t count);
18
19 #endif /* OPENOCD_TARGET_AARCH64_DISASSEMBLER_H */