Skip to content

Commit ab3a355

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 ef4f68a commit ab3a355

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

amaranth/rpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def _serve_yosys(modules):
7878
if not port_name.startswith("_") and isinstance(port, Signal):
7979
ports += port._lhs_signals()
8080
rtlil_text = rtlil.convert(elaboratable, name=module_name, ports=ports)
81-
response = {"frontend": "ilang", "source": rtlil_text}
81+
response = {"frontend": "rtlil", "source": rtlil_text}
8282
except Exception as error:
8383
response = {"error": f"{type(error).__qualname__}: {str(error)}"}
8484

0 commit comments

Comments
 (0)