compat.fhdl.structure: remove SPECIAL_* constants.
They cannot be used with nMigen designs since nMigen does not have specials.
This commit is contained in:
parent
da48c05bdf
commit
77118fb9c9
|
@ -9,8 +9,7 @@ from ...hdl.cd import ClockDomain
|
|||
|
||||
|
||||
__all__ = ["DUID", "wrap", "Mux", "Cat", "Replicate", "Constant", "C", "Signal", "ClockSignal",
|
||||
"ResetSignal", "If", "Case", "Array", "ClockDomain",
|
||||
"SPECIAL_INPUT", "SPECIAL_OUTPUT", "SPECIAL_INOUT"]
|
||||
"ResetSignal", "If", "Case", "Array", "ClockDomain"]
|
||||
|
||||
|
||||
@deprecated("instead of `wrap`, use `Value.cast`")
|
||||
|
@ -113,6 +112,3 @@ class Case(ast.Switch):
|
|||
del self.cases[key]
|
||||
self.cases[()] = stmts
|
||||
return self
|
||||
|
||||
|
||||
(SPECIAL_INPUT, SPECIAL_OUTPUT, SPECIAL_INOUT) = range(3)
|
||||
|
|
Loading…
Reference in a new issue