Give name to inter stages registers
This commit is contained in:
parent
c4f33b30e2
commit
1752b5f184
|
@ -100,7 +100,7 @@ trait Pipeline {
|
||||||
inputDefault := stage.inserts(key)
|
inputDefault := stage.inserts(key)
|
||||||
} else {
|
} else {
|
||||||
val stageBefore = stages(stageIndex - 1)
|
val stageBefore = stages(stageIndex - 1)
|
||||||
inputDefault := RegNextWhen(stageBefore.output(key), !stage.arbitration.isStuck)
|
inputDefault := RegNextWhen(stageBefore.output(key), !stage.arbitration.isStuck).setName(s"${stageBefore.getName()}_to_${stage.getName()}_${key.getName()}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue