remove aliasing for branchType and fix tests ending in dependent load chains

This commit is contained in:
David Metz 2023-08-18 14:57:56 +02:00
parent fa35a38190
commit 39c008567d
2 changed files with 2 additions and 2 deletions

View file

@ -68,7 +68,7 @@ object branchType {
val gteu = 4.asUInt(3.W)
val ltu = 5.asUInt(3.W)
val jump = 6.asUInt(3.W)
val DC = 0.asUInt(3.W)
val DC = 7.asUInt(3.W)
}

View file

@ -142,7 +142,7 @@ private class ChiselTestRunner (
// After finishing, let the circuit run until all updates can be committed.
private def flush: List[CircuitTrace] =
(0 to 4).map(_ => stepOne).reverse.toList
(0 to 5).map(_ => stepOne).reverse.toList
/**
* Run the entire shebang