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

Last change on this file since 146 was 146, checked in by rosiere, 13 years ago

1) Integration of RegisterFile_Internal_Banked in RegisterFile?
2) Erase "read_write" interface in RegisterFile_Monolithic component
3) Add smith predictor parameters in Load_store_pointer_unit.
4) Fix not statistics flags

  • Property svn:keywords set to Id
File size: 501 bytes
Line 
1#ifdef SYSTEMC
2# if defined(STATISTICS) or defined(VHDL_TESTBENCH)
3/*
4 * $Id: Core_transition.cpp 146 2011-02-01 20:57:54Z 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    end_cycle ();
23
24    log_end(Core,FUNCTION);
25  };
26
27}; // end namespace core
28}; // end namespace behavioural
29}; // end namespace morpheo             
30# endif
31#endif
Note: See TracBrowser for help on using the repository browser.