A
Allan Herriman
Guest
Hi,
I'm having a problem with the following code (which is a simplified
version of some code that I inherited).
Simulators don't seem to mind, but XST produces the following error
message:
ERROR:HDLCompilers:168 - <filename> line <number> No signals
referenced in statement with implicit sensitivity list
module foobar ();
localparam foo = 0;
reg bar;
always @*
begin
bar = foo;
end
endmodule
Is this code meaningful? Will bar get the value of foo? Or is it a
problem in XST?
Regards,
Allan
I'm having a problem with the following code (which is a simplified
version of some code that I inherited).
Simulators don't seem to mind, but XST produces the following error
message:
ERROR:HDLCompilers:168 - <filename> line <number> No signals
referenced in statement with implicit sensitivity list
module foobar ();
localparam foo = 0;
reg bar;
always @*
begin
bar = foo;
end
endmodule
Is this code meaningful? Will bar get the value of foo? Or is it a
problem in XST?
Regards,
Allan