Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_TARGET_ARM_SEMIHOSTING_H
#include "semihosting_common.h"
arm_semihosting_init(struct target *);
arm_semihosting(struct target *, int *);
Files
loading...
SourceVuDevelopment ToolsOpenOCDsrc/target/arm_semihosting.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2009 by Marvell Technology Group Ltd. * * Written by Nicolas Pitre <nico@marvell.com> * ***************************************************************************//* ... */ #ifndef OPENOCD_TARGET_ARM_SEMIHOSTING_H #define OPENOCD_TARGET_ARM_SEMIHOSTING_H #include "semihosting_common.h" int arm_semihosting_init(struct target *target); int arm_semihosting(struct target *target, int *retval); /* ... */ #endif /* OPENOCD_TARGET_ARM_SEMIHOSTING_H */
Details
Show:
from
Types: Columns:
Click anywhere in the source to view detailed information here...