Go Back   Velocity Reviews > Newsgroups > VHDL
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

VHDL - ISE problem - multiplier inputs on schematic are not assigned correctly.

 
Thread Tools Search this Thread
Old 05-23-2004, 12:37 PM   #1
Default ISE problem - multiplier inputs on schematic are not assigned correctly.


Hi,

I'm using Xilinx ISE 6.2.02 Base-X.

If I synthesize example 1, and view the schematic, the inputs to the
multiplier are not assigned by name to the input signals, it just
shows A<L:R> and B<L:R>.

However Modelsim says the circuit works, so hey I'm guessing the
inputs to the multiplier are actually assigned (to J and ROWLEN
signals)

However if I add an addition operator (as in example 2), and view the
schematic, the multiplier inputs are now shown assigned correctly.

Is this a bug? Wisdom and advice appreciated...

Andy.



EXAMPLE 1
---------

entity PIPE_ACU is
port(
CLK : in STD_LOGIC;
CE: in STD_LOGIC;
ROWLEN: in STD_LOGIC_VECTOR(7 downto 0);
--I: in STD_LOGIC_VECTOR(7 downto 0);
J: in STD_LOGIC_VECTOR(7 downto 0);
ADDR: out STD_LOGIC_VECTOR(15 downto 0)
);
end PIPE_ACU;

architecture Behavioral of PIPE_ACU is

begin

C1: process (CLK) is
begin
if CLK'event and CLK = '1' then
if CE = '1' then

--ADDR <= (J * ROWLEN) + I;
ADDR <= J * ROWLEN;

end if;
end if;

end process;


end Behavioral;

EXAMPLE 2
---------

entity PIPE_ACU is
port(
CLK : in STD_LOGIC;
CE: in STD_LOGIC;
ROWLEN: in STD_LOGIC_VECTOR(7 downto 0);
I: in STD_LOGIC_VECTOR(7 downto 0);
J: in STD_LOGIC_VECTOR(7 downto 0);
ADDR: out STD_LOGIC_VECTOR(15 downto 0)
);
end PIPE_ACU;

architecture Behavioral of PIPE_ACU is

begin

C1: process (CLK) is
begin
if CLK'event and CLK = '1' then
if CE = '1' then

ADDR <= (J * ROWLEN) + I;
--ADDR <= J * ROWLEN;

end if;
end if;

end process;


end Behavioral;


AndyAtHome
  Reply With Quote
Old 05-25-2004, 01:48 PM   #2
AndyAtHome
 
Posts: n/a
Default Re: ISE problem - multiplier inputs on schematic are not assigned correctly.
I opened a case with Xilinx... it's a bug in ECS in ISE 6.2.

Andy.


AndyAtHome
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Dial Up Problem smackedass A+ Certification 3 02-02-2007 11:59 PM
Re: storage problem SilverSurfer A+ Certification 6 06-09-2005 07:58 PM
Re: Virus Problem ** Help!** David BlandIII A+ Certification 1 03-02-2004 06:00 PM
Re: Serious Computer Problem hootnholler A+ Certification 1 11-24-2003 12:18 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46