Skip to content

Commit

Permalink
soc/cores/jtag: Fix/Test p_init/p_INIT workaround.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Nov 4, 2024
1 parent 3f3249c commit 0170462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex/soc/cores/jtag.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def __init__(self, tck_delay_luts=8):
new_tck = Signal()
self.specials += Instance("LUT4",
attr = {"keep"},
**{f"p_{p_init_name}": 2}, # Use toolchain-specific INIT parameter name.
**{f"{p_init_name}": 2}, # Use toolchain-specific INIT parameter name.
i_A = tck,
i_B = 0,
i_C = 0,
Expand Down

0 comments on commit 0170462

Please sign in to comment.