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