加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cp15.h 511 Bytes
一键复制 编辑 原始数据 按行查看 历史
Masaki Muranaka 提交于 2013-04-21 15:45 . Fix return code to Unix style.
#ifndef _CP15_H_
#define _CP15_H_
#include "types.h"
#include "CPU.h"
#include "MMU.h"
typedef struct{
ArmCpu* cpu;
ArmMmu* mmu;
UInt32 control;
UInt32 ttb;
UInt32 FSR; //fault sttaus register
UInt32 FAR; //fault address register
UInt32 CPAR; //coprocessor access register
UInt32 ACP; //auxilary control reg for xscale
}ArmCP15;
void cp15Init(ArmCP15* cp15, ArmCpu* cpu, ArmMmu* mmu);
void cp15Deinit(ArmCP15* cp15);
void cp15SetFaultStatus(ArmCP15* cp15, UInt32 addr, UInt8 faultStatus);
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化