source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/src/New_Component_transition.cpp @ 42

Last change on this file since 42 was 15, checked in by rosiere, 17 years ago

Interface normalisé
Début du banc de registres multi niveaux

File size: 618 bytes
Line 
1#ifdef SYSTEMC
2//#if defined(STATISTICS) or defined(VHDL_TESTBENCH)
3/*
4 * $Id$
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/@DIRECTORY/include/@COMPONENT.h"
11
12namespace morpheo                    {
13namespace behavioural {
14@NAMESPACE_BEGIN
15
16  void @COMPONENT::transition (void)
17  {
18    log_printf(FUNC,@COMPONENT,"transition","Begin");
19
20#ifdef STATISTICS
21    _stat->add();
22#endif   
23
24#ifdef VHDL_TESTBENCH
25    vhdl_testbench_transition ();
26#endif
27
28    log_printf(FUNC,@COMPONENT,"transition","End");
29  };
30
31@NAMESPACE_END
32}; // end namespace behavioural
33}; // end namespace morpheo             
34#endif
35//#endif
Note: See TracBrowser for help on using the repository browser.