Skip to content

Commit

Permalink
Get rid of aggregates and their issues #107
Browse files Browse the repository at this point in the history
  • Loading branch information
jandecaluwe committed Jul 18, 2015
1 parent 9ce3a25 commit 7c531fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion myhdl/conversion/_toVHDL.py
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ def getName(self, node):
s = "'Z'"
else:
assert hasattr(node.vhd, 'size')
s = "(%d downto 0 => 'Z')" % (node.vhd.size-1)
s = '"%s"' % ('Z' * node.vhd.size)
elif n in self.tree.vardict:
s = n
obj = self.tree.vardict[n]
Expand Down

0 comments on commit 7c531fc

Please sign in to comment.