Ignore:
Timestamp:
Jul 9, 2007, 11:04:26 AM (17 years ago)
Author:
rosiere
Message:

Modif mineur : ajout d'info de débug

Release non stable

File:
1 edited

Legend:

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

    r2 r43  
    1616namespace behavioural          {
    1717 
     18#undef  FUNCTION
     19#define FUNCTION "Vhdl::set_constant"
    1820  void Vhdl::set_constant (string      name     ,
    1921                           string      type     ,
    2022                           string      init)
    2123  {
     24    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
    2225    set_list(_list_type, "constant "+ name+"\t: "+type+"\t:= "+init);
     26    log_printf(FUNC,Behavioural,FUNCTION,"End");
    2327  };
    2428
     
    2731                           string      init)
    2832  {
     33    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
    2934    set_constant(name,std_logic(size),init);
     35    log_printf(FUNC,Behavioural,FUNCTION,"End");
    3036  };
    3137
     
    3440                           uint32_t    init)
    3541  {
     42    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
    3643    set_constant(name,std_logic(size),std_logic_conv(size,init));
     44    log_printf(FUNC,Behavioural,FUNCTION,"End");
    3745  };
    3846 
Note: See TracChangeset for help on using the changeset viewer.