forked from Github_Repos/cvw
put cacheLRU coverage explanation on another line
the `: explanation` syntax was not working
This commit is contained in:
parent
c41f4d2e7b
commit
270200bc1c
3
src/cache/cacheLRU.sv
vendored
3
src/cache/cacheLRU.sv
vendored
@ -68,7 +68,8 @@ module cacheLRU
|
|||||||
|
|
||||||
///// Update replacement bits.
|
///// Update replacement bits.
|
||||||
|
|
||||||
// coverage off: Untestable without varying NUMWAYS.
|
// coverage off
|
||||||
|
// Excluded from coverage b/c it is untestable without varying NUMWAYS.
|
||||||
function integer log2 (integer value);
|
function integer log2 (integer value);
|
||||||
for (log2=0; value>0; log2=log2+1)
|
for (log2=0; value>0; log2=log2+1)
|
||||||
value = value>>1;
|
value = value>>1;
|
||||||
|
Loading…
Reference in New Issue
Block a user