Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > VHDL > Components in VHDL

Reply
Thread Tools

Components in VHDL

 
 
samehsh samehsh is offline
Junior Member
Join Date: Jun 2008
Posts: 7
 
      09-14-2008
next code give me the following warning:---------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

entity Point_Doubling is
Port ( X1 : in STD_LOGIC_VECTOR (191 downto 0);
Z1 : in STD_LOGIC_VECTOR (191 downto 0);
X2 : out STD_LOGIC_VECTOR (191 downto 0);
Z2 : out STD_LOGIC_VECTOR (191 downto 0)
);
end Point_Doubling;

architecture Behavioral of Point_Doubling is
component BmultKaratsuba191 is
port( busA : in std_logic_vector(191 downto 0);
busB : in std_logic_vector(191 downto 0);
RbusR : out std_logic_vector(191 downto 0));
end component;

component FF_Square is
port( A : in std_logic_vector(191 downto 0);
RbusR : out std_logic_vector(191 downto 0));
end component;
Signal T :std_logic_vector(191 downto 0);
Signal ZSQR :std_logic_vector(191 downto 0);
Signal TSQR :std_logic_vector(191 downto 0);

begin

SQR1:FF_Square port map(X1(191 downto 0),T(191 downto 0));

SQR2:FF_Square port map(Z1(191 downto 0),ZSQR(191 downto 0));

mul1:BmultKaratsuba191 port map(T(191 downto 0),ZSQR(191 downto 0),Z2(191 downto 0));

SQR3:FF_Square port map(T(191 downto 0),TSQR(191 downto 0));

X2<=TSQR xor ZSQR;

end Behavioral;

Warning

WARNING:Xst:647 - Input <A<191>> is never used.
WARNING:Xst:653 - Signal <square_A<381>> is used but never assigned. Tied to value 0.
WARNING:Xst:646 - Signal <Mult3rd<255:254>> is assigned but never used.
WARNING:Xst:1290 - Hierarchical block <SQR1> is unconnected in block <Point_Doubling>.
WARNING:Xst:1290 - Hierarchical block <SQR2> is unconnected in block <Point_Doubling>.
WARNING:Xst:1290 - Hierarchical block <compAND1> is unconnected in block <mul1>.
WARNING:Xst:1290 - Hierarchical block <compAND2> is unconnected in block <mul1>.
WARNING:Xst:1290 - Hierarchical block <compAND61> is unconnected in block <mul1>..........................................

i check the components of this design but it work in a good mannar....but i don't know why this code give this warnning
-----------------------------------------
also how can i divide my design to some of clock cycles
 
Reply With Quote
 
 
 
Reply

Thread Tools

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 Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
VHDL-2002 vs VHDL-93 vs VHDL-87? afd VHDL 1 03-23-2007 09:33 AM
Modelling real life components in VHDL Moikel VHDL 6 02-11-2006 01:00 PM
How to instantiate identical components by for loop or generate in VHDL? boku VHDL 2 04-28-2005 10:37 AM
SWING components adjustment in different resolutions - Should show scrollbars less than 800X600 and expand components over this resolution Bluetears76 Java 1 07-01-2004 09:01 PM
Can Choice components respond to keyboard input like HTML Choice components? Mickey Segal Java 0 02-02-2004 10:59 PM



Advertisments