mirror of
https://github.com/Comp211-SP24/lab-05-Rushilwiz.git
synced 2025-04-03 20:00:21 -04:00
i cant read
This commit is contained in:
parent
cb81b76f72
commit
be35fbd2bb
10
cache.c
10
cache.c
|
@ -74,12 +74,18 @@ int cread(unsigned int cmf, unsigned int* hex_addr, bool* hit, bool* replace) {
|
|||
|
||||
if (cache[line]->tag == tag) {
|
||||
// hit
|
||||
*replace = true;
|
||||
*hit = true;
|
||||
cache[line]->hit_count++;
|
||||
ret_val = cache[line]->block[block_offset];
|
||||
} else {
|
||||
// miss
|
||||
*hit = true;
|
||||
if (cache[line]->tag == EMPTY) {
|
||||
open_line = line;
|
||||
} else {
|
||||
replace_line = line;
|
||||
*replace = true;
|
||||
}
|
||||
|
||||
cache[line]->tag = tag;
|
||||
cache[line]->hit_count = 1;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user