FPGA Central - World's 1st FPGA / CPLD Portal

FPGA Central

World's 1st FPGA Portal

 

Go Back   FPGA Groups > NewsGroup > VHDL

VHDL comp.lang.vhdl newsgroup / Usenet

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 02-23-2008, 11:11 AM
Guest
 
Posts: n/a
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;
Reply With Quote
  #2 (permalink)  
Old 02-23-2008, 10:56 PM
Mike Treseler
Guest
 
Posts: n/a
Default Re: how to generate blockdiagram

[email protected] wrote:

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


I would use the ise or quartus rtl viewer.

-- Mike Treseler

Reply With Quote
  #3 (permalink)  
Old 02-24-2008, 11:57 PM
Mark McDougall
Guest
 
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
Reply With Quote
  #4 (permalink)  
Old 02-25-2008, 02:29 AM
Mike Treseler
Guest
 
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


Reply With Quote
  #5 (permalink)  
Old 02-25-2008, 03:31 AM
Mark McDougall
Guest
 
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
Reply With Quote
Reply

Bookmarks


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 On


Similar Threads
Thread Thread Starter Forum Replies Last Post
GENERATE bir Verilog 2 11-23-2006 04:37 PM
How to generate variable labels for same component within a generate loop Weng Tianxiang VHDL 5 02-16-2006 01:45 PM
Generate???? barbablu VHDL 2 11-16-2004 06:14 PM
generate rom Jason Zheng Verilog 3 08-14-2004 04:44 AM
if-then vs. if-generate valentin tihomirov VHDL 2 02-23-2004 10:16 AM


All times are GMT +1. The time now is 11:54 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright 2008 @ FPGA Central. All rights reserved