1
2
3
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ... */
#ifndef OPENOCD_TARGET_AARCH64_DISASSEMBLER_H
#define OPENOCD_TARGET_AARCH64_DISASSEMBLER_H
#include "target.h"
int a64_disassemble(
struct command_invocation *cmd,
struct target *target,
target_addr_t address,
size_t count);
/* ... */
#endif