remove aliasing for branchType and fix tests ending in dependent load chains
This commit is contained in:
parent
fa35a38190
commit
39c008567d
2 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ object branchType {
|
||||||
val gteu = 4.asUInt(3.W)
|
val gteu = 4.asUInt(3.W)
|
||||||
val ltu = 5.asUInt(3.W)
|
val ltu = 5.asUInt(3.W)
|
||||||
val jump = 6.asUInt(3.W)
|
val jump = 6.asUInt(3.W)
|
||||||
val DC = 0.asUInt(3.W)
|
val DC = 7.asUInt(3.W)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -142,7 +142,7 @@ private class ChiselTestRunner (
|
||||||
|
|
||||||
// After finishing, let the circuit run until all updates can be committed.
|
// After finishing, let the circuit run until all updates can be committed.
|
||||||
private def flush: List[CircuitTrace] =
|
private def flush: List[CircuitTrace] =
|
||||||
(0 to 4).map(_ => stepOne).reverse.toList
|
(0 to 5).map(_ => stepOne).reverse.toList
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Run the entire shebang
|
* Run the entire shebang
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue