from ...hdl.ast import *
from ...hdl.xfrm import ResetInserter as NativeResetInserter
-from ...hdl.xfrm import CEInserter as NativeCEInserter
+from ...hdl.xfrm import EnableInserter as NativeEnableInserter
from ...hdl.xfrm import DomainRenamer as NativeDomainRenamer
class CompatCEInserter(_CompatControlInserter):
_control_name = "ce"
- _native_inserter = NativeCEInserter
+ _native_inserter = NativeEnableInserter
ResetInserter = CompatResetInserter