source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_testbench_test_ok.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: 926 bytes
Line 
1#ifdef VHDL_TESTBENCH
2/*
3 * $Id: Interface_testbench_test_ok.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  std::string Interface::testbench_test_ok (Vhdl * & vhdl)
16  {
17    log_printf(FUNC,Behavioural,"testbench_test_ok","Begin");
18
19    std::string test_name = testbench_test_ok_name(vhdl);
20
21    vhdl->set_body(test_name + " <= '1' when true");
22
23    // set all condition
24    if (_list_signal->empty()== false)
25      {
26        std::list<Signal*>::iterator i     = _list_signal->begin();
27
28        while (i != _list_signal->end())
29          {
30            (*i)->testbench_test_ok(vhdl);
31            ++i;
32          }
33      }
34    vhdl->set_body("\telse '0';");
35    vhdl->set_body("");
36
37    log_printf(FUNC,Behavioural,"testbench_test_ok","End");
38
39    return test_name;
40  };
41
42}; // end namespace behavioural         
43}; // end namespace morpheo             
44#endif
Note: See TracBrowser for help on using the repository browser.