source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_testbench_body.cpp @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 979 bytes
Line 
1#ifdef VHDL_TESTBENCH
2/*
3 * $Id: Interface_testbench_body.cpp 81 2008-04-15 18:40:01Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/include/Interface.h"
10#include "Behavioural/include/Entity.h"
11
12namespace morpheo              {
13namespace behavioural          {
14
15  void Interface::testbench_body (Vhdl * & vhdl,
16                                  std::string   counter_name,
17                                  std::string   reset_name  )
18  {
19    log_printf(FUNC,Behavioural,"testbench_body","Begin");
20
21    if (_list_signal->empty()== false)
22      {
23        std::list<Signal*>::iterator i = _list_signal->begin();
24
25        vhdl->set_body("------------------------------------------------------");
26        vhdl->set_body("-- interface \""+_name+"\"");
27        vhdl->set_body("------------------------------------------------------");
28   
29        while (i != _list_signal->end())
30          {
31            (*i)->testbench_body(vhdl, counter_name, reset_name);
32            ++i;
33          }
34      }
35
36    log_printf(FUNC,Behavioural,"testbench_body","End");
37  };
38
39}; // end namespace behavioural         
40}; // end namespace morpheo             
41#endif
Note: See TracBrowser for help on using the repository browser.