Bump Chisel and Firrtl (#1134)
This commit is contained in:
parent
9cc37b8444
commit
588dacec17
2
chisel3
2
chisel3
@ -1 +1 @@
|
||||
Subproject commit e2c5c128f6509805f71aeca790809b3e9a8fe84d
|
||||
Subproject commit 30e8eb552a29b22bc23faa06f5661da6129188b2
|
2
firrtl
2
firrtl
@ -1 +1 @@
|
||||
Subproject commit 5e23294dc6ac3c1937c9f071f970178c9f724037
|
||||
Subproject commit 40dda493a277f721306d428ee967dcb670813275
|
@ -78,7 +78,7 @@ class JtagStateMachine(implicit val p: Parameters) extends Module(override_reset
|
||||
}
|
||||
val io = IO(new StateMachineIO)
|
||||
|
||||
val nextState = Wire(JtagState.State.chiselType())
|
||||
val nextState = WireInit(JtagState.State.chiselType(), DontCare)
|
||||
|
||||
val currStateReg = Module (new AsyncResetRegVec(w = JtagState.State.width,
|
||||
init = JtagState.State.toInt(JtagState.TestLogicReset)))
|
||||
|
@ -111,6 +111,7 @@ class JtagTapController(irLength: Int, initialInstruction: BigInt)(implicit val
|
||||
nextActiveInstruction := irChain.io.update.bits
|
||||
updateInstruction := true.B
|
||||
} .otherwise {
|
||||
nextActiveInstruction := DontCare
|
||||
updateInstruction := false.B
|
||||
}
|
||||
io.output.instruction := activeInstruction
|
||||
@ -135,6 +136,7 @@ class JtagTapController(irLength: Int, initialInstruction: BigInt)(implicit val
|
||||
tdo := irChain.io.chainOut.data
|
||||
tdo_driven := true.B
|
||||
} .otherwise {
|
||||
tdo := DontCare
|
||||
tdo_driven := false.B
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user