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 50a721f commit 403aad9Copy full SHA for 403aad9
tools/export_ips.py
@@ -5,7 +5,7 @@
5
from amaranth import Elaboratable
6
from amaranth.lib import wiring
7
8
-import amaranth_orchard
+import chipflow_digital_ip
9
10
def children(mod):
11
stack = [(attr, getattr(mod, attr)) for attr in dir(mod) if not attr.startswith("_")]
@@ -21,7 +21,7 @@ def children(mod):
21
done.append(e)
22
stack.extend([(attr, getattr(o, attr)) for attr in dir(o) if not attr.startswith("_")])
23
24
-gen = children(amaranth_orchard)
+gen = children(chipflow_digital_ip)
25
output={}
26
for cls in gen:
27
output[f"{cls.__module__}.{cls.__qualname__}"]=cls.__doc__
0 commit comments