[v0.88][ARM][BUGFIX] Fix bugs in single CPU SoCs and small bugs related to strings

This commit is contained in:
Dr-Noob
2020-11-24 10:27:33 +01:00
parent 71d660d7b1
commit 685e78f2b7
4 changed files with 6 additions and 7 deletions

View File

@@ -48,6 +48,7 @@ struct cache* get_cache_info(struct cpuInfo* cpu) {
cach->max_cache_level = 2;
for(int i=0; i < cach->max_cache_level + 1; i++) {
cach->cach_arr[i]->exists = true;
cach->cach_arr[i]->num_caches = 1;
cach->cach_arr[i]->size = 0;
}