begin PU work

This commit is contained in:
StapleButter
2018-12-04 18:32:19 +01:00
parent 9ebcb5f143
commit 0b1c2f9691
3 changed files with 147 additions and 2 deletions

View File

@ -23,7 +23,6 @@
#include "types.h"
#include "NDS.h"
#include "CP15.h"
#define ROR(x, n) (((x) >> (n)) | ((x) << (32-(n))))
@ -235,6 +234,15 @@ public:
u32 ITCMSize;
u8 DTCM[0x4000];
u32 DTCMBase, DTCMSize;
u32 PU_CodeCacheable;
u32 PU_DataCacheable;
u32 PU_DataCacheWrite;
u32 PU_CodeRW;
u32 PU_DataRW;
u32 PU_Region[8];
};
class ARMv4 : public ARM