fhdl: encapsulate replicated constants

This commit is contained in:
Sebastien Bourdeauducq 2011-12-23 00:35:13 +01:00
parent f0aac4b50f
commit 76db20cd9f
1 changed files with 1 additions and 1 deletions

View File

@ -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):