mirror of
https://github.com/Comp211-SP24/lab-05-Rushilwiz.git
synced 2025-04-03 20:00:21 -04:00
was it the vars?
This commit is contained in:
parent
da785a1c9d
commit
cb81b76f72
4
cache.c
4
cache.c
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user