We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
clk_i
cke_i
arst_i
when using iob_fifo_async module, for (R_DATA_W > W_DATA_W) and (W_DATA_W == R_DATA_W) cases, we get the following warnings:
iob_fifo_async
(R_DATA_W > W_DATA_W)
(W_DATA_W == R_DATA_W)
../src/iob_fifo_async.v:224: warning: implicit definition of wire 'clk_i'. ../src/iob_fifo_async.v:225: warning: implicit definition of wire 'cke_i'. ../src/iob_fifo_async.v:226: warning: implicit definition of wire 'arst_i'.
generate
iob_asym_converter.vs
These warning should be fixed when we perform verilog generates in python
The text was updated successfully, but these errors were encountered:
AndreMerendeira
No branches or pull requests
when using
iob_fifo_async
module, for(R_DATA_W > W_DATA_W)
and(W_DATA_W == R_DATA_W)
cases, we get the following warnings:clk_i
,cke_i
andarst_i
wires are defined in agenerate
case scope that is not available foriob_asym_converter.vs
scopeThese warning should be fixed when we perform verilog generates in python
The text was updated successfully, but these errors were encountered: