Hacky pyosys workaround til Yosys fixes the issue

This commit is contained in:
Akash Levy 2024-10-15 03:20:15 -07:00
parent b2b38ab81d
commit ab05f03b70
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ wrappable_operators = {
"!=": "__ne__",
"+" : "__add__",
"-" : "__sub__",
"*" : "__mul__",
# "*" : "__mul__",
"/" : "__div__",
"()": "__call__"
}