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

Reply

VHDL - how to generate blockdiagram

 
Thread Tools Search this Thread
Old 02-23-2008, 11:11 AM   #1
Default how to generate blockdiagram



i am having simple code in VHDL,
i am runing this in active hd 6.1,

the how to generate block diagram automatically for the given code
sir.

i.e this code is cascade of 3 flip-flops, so software to genetate
this

entity rsynch is
port(
clk : in STD_LOGIC;
reset : in STD_LOGIC;
d : in STD_LOGIC;
q : buffer STD_LOGIC
);
end rsynch;

--}} End of automatically maintained section

architecture arch_rsynch of rsynch is
signal temp1 : std_logic;
signal temp2 : std_logic;
begin
p1: process ( reset,clk)
begin
if reset = '1' then
q <= '0';
elsif (clk'event and clk ='1' ) then
temp1 <= d;
temp2 <= temp1;
q <=temp2;
end if ;
end process p1;

end arch_rsynch;


chisti09@gmail.com
  Reply With Quote
Old 02-23-2008, 10:56 PM   #2
Mike Treseler
 
Posts: n/a
Default Re: how to generate blockdiagram
wrote:

> the how to generate block diagram automatically for the given code


I would use the ise or quartus rtl viewer.

-- Mike Treseler



Mike Treseler
  Reply With Quote
Old 02-24-2008, 11:57 PM   #3
Mark McDougall
 
Posts: n/a
Default Re: how to generate blockdiagram
Mike Treseler wrote:

> I would use the ise or quartus rtl viewer.


Having seen what comes out of Quartus RTl viewer, I wouldn't!

Regards,

--
Mark McDougall, Engineer
Virtual Logic Pty Ltd, <http://www.vl.com.au>
21-25 King St, Rockdale, 2216
Ph: +612-9599-3255 Fax: +612-9599-3266


Mark McDougall
  Reply With Quote
Old 02-25-2008, 12:27 AM   #4
gzidude
Junior Member
 
Join Date: Feb 2008
Posts: 20
Default
Mark,
I know what you mean. However, I have seen that a lower level description looks fine on an RTL viewer. High level code looks pretty bad though. The code given above shouldn't look too bad.


gzidude
gzidude is offline   Reply With Quote
Old 02-25-2008, 02:29 AM   #5
Mike Treseler
 
Posts: n/a
Default Re: how to generate blockdiagram
Mark McDougall wrote:
> Mike Treseler wrote:
>> I would use the ise or quartus rtl viewer.


> Having seen what comes out of Quartus RTl viewer, I wouldn't!


http://home.comcast.net/~mike_treseler/stack.pdf

looks ok to me




Mike Treseler
  Reply With Quote
Old 02-25-2008, 03:31 AM   #6
Mark McDougall
 
Posts: n/a
Default Re: how to generate blockdiagram
Mike Treseler wrote:

> looks ok to me


I haven't had much luck with my designs!

Regards,

--
Mark McDougall, Engineer
Virtual Logic Pty Ltd, <http://www.vl.com.au>
21-25 King St, Rockdale, 2216
Ph: +612-9599-3255 Fax: +612-9599-3266


Mark McDougall
  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
Generate .aspx file and .cs file behind it jyoti.bannigidad@gmail.co Software 0 09-18-2008 07:54 AM
As growth slows, Hollywood faces a DVD standoff. Allan DVD Video 0 07-11-2005 02:10 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