source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_get_cycle.cpp @ 43

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

Modif mineur : ajout d'info de débug

Release non stable

File size: 527 bytes
Line 
1#ifdef VHDL_TESTBENCH
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/include/Interface.h"
10
11
12namespace morpheo              {
13namespace behavioural          {
14
15#undef  FUNCTION
16#define FUNCTION "Interface::get_cycle"
17  uint32_t Interface::get_cycle (void)
18  {
19    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
20    uint32_t _return = _nb_cycle;
21    log_printf(FUNC,Behavioural,FUNCTION,"End");
22    return _return;
23  };
24
25}; // end namespace behavioural         
26}; // end namespace morpheo             
27#endif
Note: See TracBrowser for help on using the repository browser.