less amnesia! ITCM, DTCM, corresponding CP15 support

This commit is contained in:
StapleButter
2016-12-03 16:13:04 +01:00
parent 53bef35cd1
commit f2858e1c47
6 changed files with 264 additions and 9 deletions

15
CP15.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef CP15_H
#define CP15_H
namespace CP15
{
void Reset();
void Write(u32 id, u32 val);
u32 Read(u32 id);
}
#endif