1 /*
2  * Copyright (c) 2006-2021, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2016-09-07     Urey         first version
9  */
10 
11 #ifndef _COMMON_MIPS_H_
12 #define _COMMON_MIPS_H_
13 
14 #include "mips_cfg.h"
15 #include "ptrace.h"
16 #include "mips_types.h"
17 #include "asm.h"
18 #include "mips_regs.h"
19 #include "mips_addrspace.h"
20 #include "mips_cache.h"
21 #include "exception.h"
22 
23 #endif /* _COMMON_MIPS_H_ */
24