source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_fifo_get_cycle.cpp @ 41

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

Vhdl_Testbench : Modification du testbench. Maintenant complétement encapsuler dans la classe "Interfaces".
Suppression de la class Vhdl_Testbench dans un avenir proche :D
Suppression du répertoire Configuration.old

File size: 434 bytes
Line 
1#ifdef VHDL_TESTBENCH
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/include/Interface_fifo.h"
10
11
12namespace morpheo              {
13namespace behavioural          {
14
15  uint32_t Interface_fifo::get_cycle (void)
16  {
17    if (_test_exhaustive == true)
18      return Interface::get_cycle();
19   
20    return _list_cycle->back();
21  };
22
23}; // end namespace behavioural         
24}; // end namespace morpheo             
25#endif
Note: See TracBrowser for help on using the repository browser.