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
With "?=" when one operand is an 'X' or a 'U' it only returns '1' when the other value is a '-', otherwise, it returns 'X' or 'U'. Probably not what you want
I think you need a regular "="
The text was updated successfully, but these errors were encountered:
In https://github.com/VUnit/vunit/blob/master/examples/vhdl/array_axis_vcs/src/fifo.vhd#L44
assert always (not rst and wr -> not (d ?= dx or d ?= du))@rising_edge(clkw)
report "wrote X|U to FIFO";
With
"?="
when one operand is an'X'
or a'U'
it only returns'1'
when the other value is a'-'
, otherwise, it returns'X'
or 'U
'. Probably not what you wantI think you need a regular
"="
The text was updated successfully, but these errors were encountered: