We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4f68a commit ab3a355Copy full SHA for ab3a355
amaranth/rpc.py
@@ -78,7 +78,7 @@ def _serve_yosys(modules):
78
if not port_name.startswith("_") and isinstance(port, Signal):
79
ports += port._lhs_signals()
80
rtlil_text = rtlil.convert(elaboratable, name=module_name, ports=ports)
81
- response = {"frontend": "ilang", "source": rtlil_text}
+ response = {"frontend": "rtlil", "source": rtlil_text}
82
except Exception as error:
83
response = {"error": f"{type(error).__qualname__}: {str(error)}"}
84
0 commit comments