Skip to content

Commit af2c5ab

Browse files
rroohhhwhitequark
authored andcommitted
rpc: use rtlil instead of ilang
The ilang alias to the rtlil frontend got removed in YosysHQ/yosys#4704
1 parent 3857822 commit af2c5ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

amaranth/rpc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def _serve_yosys(modules):
7979
if not port_name.startswith("_") and isinstance(port, (Signal, Record)):
8080
ports += port._lhs_signals()
8181
rtlil_text = rtlil.convert(elaboratable, name=module_name, ports=ports)
82-
response = {"frontend": "ilang", "source": rtlil_text}
82+
response = {"frontend": "rtlil", "source": rtlil_text}
8383
except Exception as error:
8484
response = {"error": f"{type(error).__qualname__}: {str(error)}"}
8585

0 commit comments

Comments
 (0)