FPGA Central - World's 1st FPGA / CPLD Portal

FPGA Central

World's 1st FPGA Portal

 

Go Back   FPGA Groups > NewsGroup > FPGA

FPGA comp.arch.fpga newsgroup (usenet)

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 09-05-2007, 08:49 AM
ankur
Guest
 
Posts: n/a
Default warning 1780 shown while synthesis, in xilinx 6.3i

hi
I am designing a generic arbiter .
while synthesis the xilinx tool is giving warning


WARNING:Xst:646 - Signal <inter> is assigned but never used.
WARNING:Xst:1780 - Signal <k> is never used or assigned.

I searched it out in the solution record
warning 646 can be ignored .
but warning 1780 is displayed in the case of jtag ,so i am not able to
conceive why this is coming.
i have pasted the design below.
thanks for help
ankur

module pri_encoder32(inbus,outbus);


parameter size=9;
parameter size_1=size-1;
parameter size_out=4;
input [size-1:0]inbus;

output reg [size_out-1:0]outbus;


reg [size_out-1:0]k;
reg [size_out-1:0]inter;



always @(inbus)
begin
inter=0;
for (k = size; k >= 1; k = k - 1)
begin

if (inbus[k-1]==1)
begin
outbus = k-1;
inter=k-1;
end
else
begin
outbus=inter;
end
end



end


endmodule

Reply With Quote
  #2 (permalink)  
Old 09-05-2007, 03:30 PM
Dave Pollum
Guest
 
Posts: n/a
Default Re: warning 1780 shown while synthesis, in xilinx 6.3i

On Sep 5, 2:49 am, ankur <[email protected]> wrote:
> hi
> I am designing a generic arbiter .
> while synthesis the xilinx tool is giving warning
>
> WARNING:Xst:646 - Signal <inter> is assigned but never used.
> WARNING:Xst:1780 - Signal <k> is never used or assigned.
>
> I searched it out in the solution record
> warning 646 can be ignored .
> but warning 1780 is displayed in the case of jtag ,so i am not able to
> conceive why this is coming.
> i have pasted the design below.
> thanks for help
> ankur
>
> module pri_encoder32(inbus,outbus);
>
> parameter size=9;
> parameter size_1=size-1;
> parameter size_out=4;
> input [size-1:0]inbus;
>
> output reg [size_out-1:0]outbus;
>
> reg [size_out-1:0]k;
> reg [size_out-1:0]inter;
>
> always @(inbus)
> begin
> inter=0;
> for (k = size; k >= 1; k = k - 1)
> begin
>
> if (inbus[k-1]==1)
> begin
> outbus = k-1;
> inter=k-1;
> end
> else
> begin
> outbus=inter;
> end
> end
>
> end
>
> endmodule


I'm not familiar with verilog, but it looks like this boils down to
k=1. You may want to post this to comp.lang.verilog.
-Dave Pollum

Reply With Quote
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
reg is shown in waveform window of QuestaSim6.2b Andreas Ehliar Verilog 2 10-21-2008 10:15 AM
synthesis showing warning (replicated 1 time(s) to handle iob=true attribute.) ankur FPGA 1 08-17-2007 03:41 PM
synthesis showing warning (replicated 1 time(s) to handle iob=true attribute.) ankur FPGA 0 08-16-2007 07:38 AM
Synthesis warning... kb33 Verilog 11 10-27-2005 12:23 AM
Xilinx Warning Dangling Output Warning Brad Smallridge FPGA 0 12-20-2004 10:35 PM


All times are GMT +1. The time now is 11:53 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright 2008 @ FPGA Central. All rights reserved