mirror of
https://github.com/YosysHQ/yosys
synced 2025-05-28 17:59:12 +00:00
Fix: Unresolved reference.
This commit is contained in:
parent
74dd36ad55
commit
279298c0b8
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ class smtio:
|
||||||
|
|
||||||
def bv2hex(self, v):
|
def bv2hex(self, v):
|
||||||
h = ""
|
h = ""
|
||||||
v = bv2bin(v)
|
v = self.bv2bin(v)
|
||||||
while len(v) > 0:
|
while len(v) > 0:
|
||||||
d = 0
|
d = 0
|
||||||
if len(v) > 0 and v[-1] == "1": d += 1
|
if len(v) > 0 and v[-1] == "1": d += 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue