2017-11-08 19:47:45 +08:00
|
|
|
/*
|
2021-03-27 17:51:56 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2017-11-08 19:47:45 +08:00
|
|
|
*
|
2019-07-19 20:54:36 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2017-11-08 19:47:45 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2019-07-19 20:54:36 +08:00
|
|
|
* 2016-09-07 Urey first version
|
2017-11-08 19:47:45 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _COMMON_MIPS_H_
|
|
|
|
#define _COMMON_MIPS_H_
|
|
|
|
|
|
|
|
#include "mips_cfg.h"
|
2019-12-07 00:54:03 +08:00
|
|
|
#include "ptrace.h"
|
2017-11-08 19:47:45 +08:00
|
|
|
#include "mips_types.h"
|
2019-12-07 00:54:03 +08:00
|
|
|
#include "asm.h"
|
2017-11-08 19:47:45 +08:00
|
|
|
#include "mips_regs.h"
|
|
|
|
#include "mips_addrspace.h"
|
|
|
|
#include "mips_cache.h"
|
2019-12-07 00:54:03 +08:00
|
|
|
#include "exception.h"
|
2017-11-08 19:47:45 +08:00
|
|
|
|
|
|
|
#endif /* _COMMON_MIPS_H_ */
|