Skip to content

Commit 5df6987

Browse files
committed
All signals going towards padring shoule be Out()
1 parent b95dfdd commit 5df6987

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

my_design/design.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
__all__ = ["JTAGSignature", "MySoC"]
2525

2626
JTAGSignature = wiring.Signature({
27-
"trst": In(InputPinSignature(1)),
28-
"tck": In(InputPinSignature(1)),
29-
"tms": In(InputPinSignature(1)),
30-
"tdi": In(InputPinSignature(1)),
27+
"trst": Out(InputPinSignature(1)),
28+
"tck": Out(InputPinSignature(1)),
29+
"tms": Out(InputPinSignature(1)),
30+
"tdi": Out(InputPinSignature(1)),
3131
"tdo": Out(OutputPinSignature(1)),
3232
})
3333

0 commit comments

Comments
 (0)