Hi

On Tue, Jan 29, 2013 at 11:00 AM, mkk <mkr...@gmx.net> wrote:

> 1. don't  make comments which are starting with --! inside sequential
> statements !
> 2. if you make some comments inside your vhdlflow example try this:
>
>  PROC_TEST_FLOW : process (p_Clk)
>   --# PROC_TEST_FLOW ...
>   --# p_Clk -> clock
>   begin
>  --# Reset all signals and variables to safe condition
>    if (reset = '1') then
>       s_t_MpxState <= t_MpxIdle;
>       v_DataTransaction  := '1';
>
>     elsif (p_Clk'event and p_Clk = '1') then
>
>   case s_t_MpxState is
>   -----------------------------------------------------------------------
>     when t_MpxIdle1 =>
>                        s_t_MpxState <= t_MpxIdle2; --# S1
>   -----------------------------------------------------------------------
>     when t_MpxIdle2 =>
>                        s_t_MpxState <= t_MpxIdle1; --# S2
>   -----------------------------------------------------------------------
>     when others     => s_t_MpxState <= t_MpxIdle1;
>
>   end case;
>
>     end if;
>
>   end process PROC_TEST_FLOW;
>
>
> end behavioral_test;
>
> 3. you can try  the \cond -- \endcond commands and
> PREPROCESSOR_ENABBLE=YES,
> see docu.
> 4. there is still an open bug for processes. Try the next doxygen update.
>
>
>
>
Thanx for the reply.
The comments were just an example - to see if they could be used in the
diagram instead of the code.
I tried the suggestion above, but it's not quite what we wanted.

Will use the \dot commands for now.

Thanx for your effort
Vicki
------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to