aboutsummaryrefslogtreecommitdiffstats
path: root/backends/smt2/smtio.py
diff options
context:
space:
mode:
authorEddie Hung <eddieh@ece.ubc.ca>2019-02-06 14:31:11 -0800
committerEddie Hung <eddieh@ece.ubc.ca>2019-02-06 14:31:11 -0800
commit4167b15de5f8d72b965d1ea2908c886f9703700a (patch)
tree581cf9b62272305401c1b4f47c279d533757100a /backends/smt2/smtio.py
parent3f87cf86ccefe6e66f768fbf19c34db97cf7246d (diff)
parentc373640a3ac6c2f76f0a8dce4e44236154ca24bc (diff)
downloadyosys-4167b15de5f8d72b965d1ea2908c886f9703700a.tar.gz
yosys-4167b15de5f8d72b965d1ea2908c886f9703700a.tar.bz2
yosys-4167b15de5f8d72b965d1ea2908c886f9703700a.zip
Merge branch 'dff_init' of https://github.com/eddiehung/yosys into xaig
Diffstat (limited to 'backends/smt2/smtio.py')
-rw-r--r--backends/smt2/smtio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/smt2/smtio.py b/backends/smt2/smtio.py
index 68783e744..ab20a4af2 100644
--- a/backends/smt2/smtio.py
+++ b/backends/smt2/smtio.py
@@ -784,7 +784,7 @@ class SmtIo:
def get_path(self, mod, path):
assert mod in self.modinfo
- path = path.split(".")
+ path = path.replace("\\", "/").split(".")
for i in range(len(path)-1):
first = ".".join(path[0:i+1])