mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-15 13:28:59 +00:00
Fix: Unresolved reference.
This commit is contained in:
parent
74dd36ad55
commit
279298c0b8
|
@ -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…
Reference in a new issue