Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_TARGET_MIPS_MIPS64_H
#include "helper/types.h"
mips_mips64_common
Files
loading...
CodeScopeDevelopment ToolsOpenOCDsrc/target/mips_mips64.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * MIPS64 generic target support * * * Copyright (C) 2014 by Andrey Sidorov <anysidorov@gmail.com> * Copyright (C) 2014 by Aleksey Kuleshov <rndfax@yandex.ru> * Copyright (C) 2014-2019 by Peter Mamonov <pmamonov@gmail.com> * * Based on the work of: * Copyright (C) 2008 by Spencer Oliver * Copyright (C) 2008 by David T.L. Wong *//* ... */ #ifndef OPENOCD_TARGET_MIPS_MIPS64_H #define OPENOCD_TARGET_MIPS_MIPS64_H #include "helper/types.h" struct mips_mips64_common { unsigned int common_magic; struct mips64_common mips64_common; ...}; /* ... */ #endif /* OPENOCD_TARGET_MIPS_MIPS64_H */