Skip to content

Commit 8f49099

Browse files
committed
fix bscan again
1 parent 068aea5 commit 8f49099

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/ip/xilinx/bscan/bscan.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import chisel3.experimental.{ExtModule, Analog, attach}
77
object JTAGTUNNEL {
88
def apply (DUT_TCK: Bool, DUT_TMS: Bool, DUT_TDI: Bool, DUT_TDO:Bool, DUT_TDO_en: Bool): Unit = {
99
val inst_jtag_tunnel = Module(new JTAGTUNNEL())
10-
DUT_TCK := inst_jtag_tunnel.jtag_tck
10+
DUT_TCK := inst_jtag_tunnel.jtag_tck.asBool()
1111
DUT_TMS := inst_jtag_tunnel.jtag_tms
1212
DUT_TDI := inst_jtag_tunnel.jtag_tdi
1313
inst_jtag_tunnel.jtag_tdo := DUT_TDO

0 commit comments

Comments
 (0)