projects
/
nmigen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d44ea4e
)
compat.fhdl.decorators: avoid using deprecated NativeCEInserter.
author
whitequark
<whitequark@whitequark.org>
Sun, 18 Aug 2019 16:27:11 +0000
(16:27 +0000)
committer
whitequark
<whitequark@whitequark.org>
Sun, 18 Aug 2019 16:27:11 +0000
(16:27 +0000)
nmigen/compat/fhdl/decorators.py
patch
|
blob
|
history
diff --git
a/nmigen/compat/fhdl/decorators.py
b/nmigen/compat/fhdl/decorators.py
index 933dcc0e249621c7771f9942066c7601c49db94e..f4ab519f8f28524f6745b3fba6c4bd730466a116 100644
(file)
--- a/
nmigen/compat/fhdl/decorators.py
+++ b/
nmigen/compat/fhdl/decorators.py
@@
-1,6
+1,6
@@
from ...hdl.ast import *
from ...hdl.xfrm import ResetInserter as NativeResetInserter
-from ...hdl.xfrm import
CEInserter as NativeCE
Inserter
+from ...hdl.xfrm import
EnableInserter as NativeEnable
Inserter
from ...hdl.xfrm import DomainRenamer as NativeDomainRenamer
@@
-33,7
+33,7
@@
class CompatResetInserter(_CompatControlInserter):
class CompatCEInserter(_CompatControlInserter):
_control_name = "ce"
- _native_inserter = Native
CE
Inserter
+ _native_inserter = Native
Enable
Inserter
ResetInserter = CompatResetInserter