Multiplication

Joined
Jun 5, 2007
Messages
51
Reaction score
0
Dear folks,

I am using the following code for multiplication, but it doesn't infer any logical resources in Xilinx FPGA. I am using ISE 9.2. Output c is grounded.

entity multiplication is

Generic (L:integer:=3);
Port ( a,b : in integer;
c : out integer);

end multiplication;

architecture Behavioral of multiplication is

constant mult : integer:=(2**(L-1));

begin

c <= a*mult;

end Behavioral;

i want to use L as generic. so please guide me to sort this out.

thnx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,077
Latest member
SangMoor21

Latest Threads

Top