Ignore:
Timestamp:
Dec 10, 2008, 7:31:39 PM (15 years ago)
Author:
rosiere
Message:

Almost complete design
with Test and test platform

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_set_body.cpp

    r81 r88  
    1717#undef  FUNCTION
    1818#define FUNCTION "Vhdl::set_body"
    19   void Vhdl::set_body (std::string      text     )
     19  void Vhdl::set_body (std::string text)
    2020  {
    2121    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
    2222    set_list(_list_body, text);
     23    log_printf(FUNC,Behavioural,FUNCTION,"End");
     24  };
     25 
     26#undef  FUNCTION
     27#define FUNCTION "Vhdl::set_body"
     28  void Vhdl::set_body (Vhdl * vhdl)
     29  {
     30    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
     31   
     32    for (std::list<std::string>::iterator it=vhdl->_list_body.begin();
     33         it!=vhdl->_list_body.end();
     34         ++it)
     35      set_list(_list_body, *it);
     36
    2337    log_printf(FUNC,Behavioural,FUNCTION,"End");
    2438  };
Note: See TracChangeset for help on using the changeset viewer.