diff options
author | Siddarth Suresh <155843085+SiddarthSuresh98@users.noreply.github.com> | 2025-03-21 21:55:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-21 21:55:48 -0400 |
commit | 82096f8cea42d78505b49d9f8ba22573daa2cc12 (patch) | |
tree | 33b40e742db09c1bb2b630f28343d53520ba1f2b /inc | |
parent | b2dbd9fa44f57bfa7b67f828ed8b354f4af3a0b6 (diff) | |
parent | 7e01ac0891452dfda93c2dcfd0817a4d43871c4b (diff) |
Merge pull request #28 from bdunahu/bdunahuer
Rewrite current cache.cc tests, add test-helper function to dram
Diffstat (limited to 'inc')
-rw-r--r-- | inc/cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/cache.h b/inc/cache.h index 31602ca..3b16ca1 100644 --- a/inc/cache.h +++ b/inc/cache.h @@ -47,7 +47,7 @@ class Cache : public Storage * cache level to true, and the victim line is chosen/written back. * @param the address that must be present in cache. */ - void fetch_resource(int address); + void handle_miss(int address); /** * An array of metadata about elements in `data`. * If the first value of an element is negative, the corresponding |