source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/src/Core_transition.cpp @ 145

Last change on this file since 145 was 145, checked in by rosiere, 14 years ago

1) add test with SPECINT2K
2) new config of Selftest
3) modif RAT to support multiple depth_save ... but not finish (need fix Update Prediction Table)
4) add Function_pointer but need fix

  • Property svn:keywords set to Id
File size: 559 bytes
Line 
1# if defined(STATISTICS) or defined(VHDL_TESTBENCH)
2#ifdef SYSTEMC
3/*
4 * $Id: Core_transition.cpp 145 2010-10-13 18:15:51Z rosiere $
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/Core/include/Core.h"
11
12namespace morpheo {
13namespace behavioural {
14namespace core {
15
16#undef  FUNCTION
17#define FUNCTION "Core::transition"
18  void Core::transition (void)
19  {
20    log_begin(Core,FUNCTION);
21
22#if defined(STATISTICS) or defined(VHDL_TESTBENCH)
23    end_cycle ();
24#endif
25
26    log_end(Core,FUNCTION);
27  };
28
29}; // end namespace core
30}; // end namespace behavioural
31}; // end namespace morpheo             
32# endif
33#endif
Note: See TracBrowser for help on using the repository browser.