Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_TARGET_AARCH64_DISASSEMBLER_H
#include "target.h"
a64_disassemble(struct command_invocation *, struct target *, target_addr_t, size_t);
Files
loading...
CodeScopeDevelopment ToolsOpenOCDsrc/target/a64_disassembler.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2019 by Mete Balci * * metebalci@gmail.com * ***************************************************************************//* ... */ #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 /* OPENOCD_TARGET_AARCH64_DISASSEMBLER_H */