-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
~VAR[][n] (without a name) generates invalid HDL #2237
Labels
Comments
This is caused by the blackbox parser failing to parse |
leonschoorl
added a commit
that referenced
this issue
Jun 13, 2022
This turns #2237 into an error. And fix blackboxes for clogBase and altddioIn, which were silently broken :'(
leonschoorl
added a commit
that referenced
this issue
Jun 13, 2022
leonschoorl
added a commit
that referenced
this issue
Jun 15, 2022
This turns #2237 into an error. And fix blackboxes for clogBase and altddioIn, which were silently broken :'(
We've released v1.6.4, which includes a fix for this issue. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using a
~VAR[][n]
without providing an explicit name breaks code generation.generates
Notice the missing
)
.It doesn't just use an empty string for a name, but completely stops generating code for the blackbox at that point.
Also when you do fill in a name other then
foo
clash will just ignore it and use the first name you gave to that argument position.I'd like clash to come up with a name when I can't be bothered.
Or it could report an error,
The text was updated successfully, but these errors were encountered: