was it the vars?

This commit is contained in:
Rushil Umaretiya 2024-04-10 20:37:08 -04:00
parent da785a1c9d
commit cb81b76f72
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959

View File

@ -74,12 +74,12 @@ int cread(unsigned int cmf, unsigned int* hex_addr, bool* hit, bool* replace) {
if (cache[line]->tag == tag) {
// hit
*hit = true;
*replace = true;
cache[line]->hit_count++;
ret_val = cache[line]->block[block_offset];
} else {
// miss
*replace = true;
*hit = true;
cache[line]->tag = tag;
cache[line]->hit_count = 1;