Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_TARGET_ARC_MEM_H
----- Exported functions
arc_mem_read(struct target *, target_addr_t, uint32_t, uint32_t, uint8_t *);
arc_mem_write(struct target *, target_addr_t, uint32_t, uint32_t, const uint8_t *);
Files
loading...
CodeScopeDevelopment ToolsOpenOCDsrc/target/arc_mem.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2013-2014,2019-2020 Synopsys, Inc. * * Frank Dols <frank.dols@synopsys.com> * * Anton Kolesov <anton.kolesov@synopsys.com> * * Evgeniy Didin <didin@synopsys.com> * ***************************************************************************//* ... */ #ifndef OPENOCD_TARGET_ARC_MEM_H #define OPENOCD_TARGET_ARC_MEM_H /* ----- Exported functions ------------------------------------------------ */ int arc_mem_read(struct target *target, target_addr_t address, uint32_t size, uint32_t count, uint8_t *buffer); int arc_mem_write(struct target *target, target_addr_t address, uint32_t size, uint32_t count, const uint8_t *buffer); ----- Exported functions /* ... */#endif /* OPENOCD_TARGET_ARC_MEM_H */