JIT: Passing first 2 tests in basic_simpleboot

This commit is contained in:
SimoneN64
2023-03-20 23:37:54 +01:00
parent 0f2a999f00
commit 94ce40429f
15 changed files with 319 additions and 289 deletions

View File

@@ -7,8 +7,8 @@ void JIT::InvalidatePage(u32 paddr) {
void JIT::InvalidateCache() {
sizeUsed = 0;
for(int i = 0; i < 0x80000; i++) {
blockCache[i] = nullptr;
for(auto &i : blockCache) {
i = nullptr;
}
}