3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-24 14:53:42 +00:00

Various fixes and improvements in smt2 back-end

This commit is contained in:
Clifford Wolf 2016-08-26 17:33:02 +02:00
parent 4be4969bae
commit 17233b11e1
2 changed files with 117 additions and 81 deletions

View file

@ -375,7 +375,7 @@ class smtio:
nextmod = self.modinfo[mod].cells[path[0]]
nextbase = "(|%s_h %s| %s)" % (mod, path[0], base)
return self.mem_expr(nextmod, nextbase, path[1:])
return self.mem_expr(nextmod, nextbase, path[1:], portidx=portidx, infomode=infomode)
def mem_info(self, mod, base, path):
return self.mem_expr(mod, base, path, infomode=True)