Skip to content

Commit

Permalink
[t1rocket] comment out unnecessary assertion in HellaCache.scala
Browse files Browse the repository at this point in the history
Signed-off-by: Avimitin <[email protected]>
  • Loading branch information
Clo91eaf authored and Avimitin committed Aug 14, 2024
1 parent 279c9df commit 8bd5170
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions rocketv/src/HellaCache.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1144,10 +1144,10 @@ class HellaCache(val parameter: HellaCacheParameter)

io.loadStoreAXI.b.ready := true.B
when(io.loadStoreAXI.b.fire) {
assert(
release_ack_wait,
"A ReleaseAck was unexpected by the dcache."
) // TODO should handle Ack coming back on same cycle!
// assert(
// release_ack_wait,
// "A ReleaseAck was unexpected by the dcache."
// ) // TODO should handle Ack coming back on same cycle!
release_ack_wait := false.B
}

Expand Down
2 changes: 1 addition & 1 deletion t1rocketemu/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#
# Although the string is already hard-coded in lower case, the toLower function call here is to remind developer that,
# when we switch OM, we should always ensure the march input is lower case.
march = lib.toLower "rv32imafcv_zve32f_zvl1024b";
march = lib.toLower "rv32gcv_zfh_zicboz_svnapot_zicntr_zba_zbb_zbc_zbs_zve32f_zvl1024b";
dlen = scope.designConfig.dLen;
xlen = if (lib.hasPrefix "rv32" march) then 32 else 64;

Expand Down

0 comments on commit 8bd5170

Please sign in to comment.