Skip to content

Commit

Permalink
gowin_pack: fix invalid escape sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark authored Jan 12, 2025
1 parent 53d746d commit d367872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apycula/gowin_pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def sanitize_name(name):
retname = name[:-4]
if _verilog_name.fullmatch(retname):
return retname
return f"\{retname} "
return f"{retname} "

def extra_pll_bels(cell, row, col, num, cellname):
# rPLL can occupy several cells, add them depending on the chip
Expand Down

0 comments on commit d367872

Please sign in to comment.