You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think that Module should be CompatModule. But, making that change and running locally results in the following error.
File nmigen/compat/fhdl/module.py", line 133, in __getattr__
.format(type(self).__name__, name))
AttributeError: 'CompatModule' object has no attribute 'd'
But, that error is causing me to second guess this change. Any ideas on what's going on here?
The text was updated successfully, but these errors were encountered:
I think that Module should be CompatModule. But, making that change and running locally results in the following error.
Why do you think that? That import is correct. (Admittedly the naming in nmigen.compat is confusing, but clarity was not my first priority for that part of nMigen.)
I think there may be a typo on line 47 of Tristate.elaborate().
nmigen/nmigen/compat/fhdl/specials.py
Lines 43 to 48 in c337246
The import statement at the top is:
from .module import Module as CompatModule
I think that Module should be CompatModule. But, making that change and running locally results in the following error.
But, that error is causing me to second guess this change. Any ideas on what's going on here?
The text was updated successfully, but these errors were encountered: