Skip to content

Commit 403aad9

Browse files
committed
wip
1 parent 50a721f commit 403aad9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/export_ips.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from amaranth import Elaboratable
66
from amaranth.lib import wiring
77

8-
import amaranth_orchard
8+
import chipflow_digital_ip
99

1010
def children(mod):
1111
stack = [(attr, getattr(mod, attr)) for attr in dir(mod) if not attr.startswith("_")]
@@ -21,7 +21,7 @@ def children(mod):
2121
done.append(e)
2222
stack.extend([(attr, getattr(o, attr)) for attr in dir(o) if not attr.startswith("_")])
2323

24-
gen = children(amaranth_orchard)
24+
gen = children(chipflow_digital_ip)
2525
output={}
2626
for cls in gen:
2727
output[f"{cls.__module__}.{cls.__qualname__}"]=cls.__doc__

0 commit comments

Comments
 (0)