I am having a hard time figuring out why ISE14.1 is giving me a warning:
Code: Select all
WARNING:HDLCompiler:1016 - "C:\FPGA\PVBRAM3alt\clock.v" Line 98: Port CLKOUT1 is not connected to this instanceCode: Select all
WARNING:HDLCompiler:1016 - "C:\FPGA\PVBRAM3alt\clock.v" Line 98: Port CLKOUT1 is not connected to this instanceCode: Select all
//.CLKOUT1 (clkout1_unused),
Code: Select all
always @(posedge clk) begin
if (we)
RAM[addr] <= din;
if (rst)
dout <= 0;
else
dout <= RAM[addr];
endCode: Select all
always @(posedge clk) begin
if (we)
RAM[addr] <= din;
else
dout <= RAM[addr];
if (rst)
dout <= 0;
end