diff --git a/hdl21/netlisting.py b/hdl21/netlisting.py index c39a696..aed44a9 100644 --- a/hdl21/netlisting.py +++ b/hdl21/netlisting.py @@ -7,7 +7,7 @@ # Import the core netlisting from `vlsirtools` import vlsir from vlsirtools.netlist import ( - netlist as vlisr_netlist, + netlist as vlsir_netlist, NetlistFormat, NetlistFormatSpec, NetlistOptions, @@ -51,7 +51,7 @@ def netlist( pkg = src # And invoke the VLSIR netlister - return vlisr_netlist(pkg=pkg, dest=dest, **kwargs) + return vlsir_netlist(pkg=pkg, dest=dest, **kwargs) __all__ = ["netlist", "NetlistFormat", "NetlistFormatSpec", "NetlistOptions"]