Skip to content

Commit

Permalink
back.cxxrtl: actualize Yosys version requirement.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Aug 26, 2020
1 parent 00026c6 commit 38b75ba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions nmigen/back/cxxrtl.py
Expand Up @@ -18,8 +18,7 @@ def _convert_rtlil_text(rtlil_text, black_boxes, *, src_loc_at=0):
raise TypeError("CXXRTL black box source code must be a string, not {!r}"
.format(box_source))

# FIXME: update this requirement once Yosys updates its node version
yosys = find_yosys(lambda ver: ver >= (0, 9))
yosys = find_yosys(lambda ver: ver >= (0, 9, 3468))

script = []
if black_boxes is not None:
Expand Down

0 comments on commit 38b75ba

Please sign in to comment.