put cacheLRU coverage explanation on another line

the `: explanation` syntax was not working
This commit is contained in:
Alec Vercruysse 2023-04-04 22:19:21 -07:00
parent c41f4d2e7b
commit 270200bc1c

View File

@ -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;