blob: 69fb2a6f98d2630350986433f5d0fdffff70d9e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* 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 {
int common_magic;
struct mips64_common mips64_common;
};
#endif /* OPENOCD_TARGET_MIPS_MIPS64_H */
|