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

Reply

VHDL - very large no. of interconnections

 
Thread Tools Search this Thread
Old 01-17-2006, 07:46 AM   #1
Default very large no. of interconnections


Hi,

I want to have some arbitrary number of instanstiations and the
interconnection are not in regular fashion( there is no fixed
relationship to derive interconnections)..

Can anybody tell how to make for eg.

generate
genvar i;
for(i=0;i<=15;i=i+1) //Lowest level L1
begin:rout1
di
#(.INPUT_WIDTH( (4 + L2)),
.OUTPUT_WIDTH((4 + L2)) ,
.ADDR_BIT_WIDTH(ADDR_BIT_WIDTH)
)
)
d1_dut_11(
.clk(clk),
.reset(reset),
.data_in1(data_temp2[i])
.data_in2(data_temp5[i])
.data_in3(data_temp6[i])
);
end
endgenerate

My problem:
In port map(named association) I must have some arbirary way of
connections. So its really difficult to derive from genvar i. I am
planning to use

1.some function call to map into this arbitrary way. eg
..data_in1(data_temp2[map_fun(i)])
2. Use some array to use its .data_in1(data_temp2[map_arr[i]])

Is it possible to do this or is there any other smart way? Please let
me know...

--Junaid



junaid.ece@gmail.com
  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
large dataset to xml in vb.net vbcheerful Software 0 04-09-2008 03:33 AM
Issue with dual-boot system w/ large HDD Dave Hardenbrook A+ Certification 0 11-27-2007 06:13 AM
Moving from color region with large DVD collection options Cat Herder DVD Video 5 03-01-2006 12:10 PM
How to split a large avi file into smaller avi by size Avner DVD Video 1 10-31-2005 06:34 PM
Discounts on large orders? boe DVD Video 0 06-27-2004 09:07 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