source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_testbench_test_ok.cpp @ 95

Last change on this file since 95 was 95, checked in by rosiere, 15 years ago

1) Update Prediction Table - New architecture (systemC) done (and tested) -> need change interface in top level
2) Change documentation on VHDL generation
3) Change VHDL constant (case std_logic and std_logic_vector)

  • Property svn:keywords set to Id
File size: 922 bytes
Line 
1#ifdef VHDL_TESTBENCH
2/*
3 * $Id: Interface_testbench_test_ok.cpp 95 2008-12-16 16:24:26Z 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.