How do I get rid of sensitivity list warning when synthesizing Verilog code?
Posted
by EquinoX
on Stack Overflow
See other posts from Stack Overflow
or by EquinoX
Published on 2010-04-21T23:14:08Z
Indexed on
2010/04/22
0:53 UTC
Read the original article
Hit count: 295
I am getting the warning that:
One or more signals are missing in the sensitivity list of always block.
always@(Address)begin
ReadData = instructMem[Address];
end
How do I get rid of this warning?
© Stack Overflow or respective owner