source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Sort/src/Sort_transition.cpp

Last change on this file was 128, checked in by rosiere, 15 years ago

1) Correct bug in link two signal
2) Fix error detected with valgrind
3) modif distexe script

  • Property svn:keywords set to Id
File size: 603 bytes
Line 
1#ifdef SYSTEMC
2#if defined(STATISTICS) or defined(VHDL_TESTBENCH)
3/*
4 * $Id: Sort_transition.cpp 128 2009-06-26 08:43:23Z rosiere $
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/Generic/Sort/include/Sort.h"
11
12namespace morpheo                    {
13namespace behavioural {
14namespace generic {
15namespace sort {
16
17#undef  FUNCTION
18#define FUNCTION "Sort::transition"
19  void Sort::transition (void)
20  {
21    log_printf(FUNC,Sort,FUNCTION,"Begin");
22
23    end_cycle ();
24
25    log_printf(FUNC,Sort,FUNCTION,"End");
26  };
27
28}; // end namespace sort
29}; // end namespace generic
30
31}; // end namespace behavioural
32}; // end namespace morpheo             
33#endif
34#endif
Note: See TracBrowser for help on using the repository browser.