mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
fhdl: encapsulate replicated constants
This commit is contained in:
parent
f0aac4b50f
commit
76db20cd9f
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ class Cat(Value):
|
|||
|
||||
class Replicate(Value):
|
||||
def __init__(self, v, n):
|
||||
self.v = v
|
||||
self.v = _cst(v)
|
||||
self.n = n
|
||||
|
||||
class Constant(Value):
|
||||
|
|
Loading…
Reference in a new issue