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

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

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