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'm not shure if mupltiple assignemnts in system verilog are defined, as:
A = B = 5;
but ICSC compiles a C multiple assigment one to one into the system verilog output. If thats allowed in SV, at least Intel's Quartus 18.1 will not accept this.
Changing to
A = 5;
B = 5;
at the other hand is ok.
The text was updated successfully, but these errors were encountered:
I'm not shure if mupltiple assignemnts in system verilog are defined, as:
but ICSC compiles a C multiple assigment one to one into the system verilog output. If thats allowed in SV, at least Intel's Quartus 18.1 will not accept this.
Changing to
at the other hand is ok.
The text was updated successfully, but these errors were encountered: