3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 00:55:32 +00:00

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

View file

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