Ignore:
Timestamp:
May 1, 2008, 6:48:45 PM (16 years ago)
Author:
rosiere
Message:
  • support locale (now must "just" translate)
  • update all component with new test format
  • update all component with usage
  • New component : decod queue and prediction_unit
File:
1 edited

Legend:

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

    • Property svn:keywords deleted
    r81 r82  
    3131    ,_usage            (usage)
    3232  {
    33     log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
     33    log_begin(@COMPONENT,FUNCTION);
    3434
    3535    usage_environment(_usage);
    3636
    37     log_printf(INFO,@COMPONENT,FUNCTION,"Allocation");
     37    log_printf(INFO,@COMPONENT,FUNCTION,_("Allocation"));
    3838
    3939    allocation (
     
    4646    if (usage_is_set(_usage,USE_STATISTICS))
    4747      {
    48         log_printf(INFO,@COMPONENT,FUNCTION,"Allocation of statistics");
     48        log_printf(INFO,@COMPONENT,FUNCTION,_("Allocation of statistics"));
    4949
    5050        statistics_allocation(param_statistics);
     
    5656      {
    5757        // generate the vhdl
    58         log_printf(INFO,@COMPONENT,FUNCTION,"Generate the vhdl");
     58        log_printf(INFO,@COMPONENT,FUNCTION,_("Generate the vhdl"));
    5959       
    6060        vhdl();
     
    6565    if (usage_is_set(_usage,USE_SYSTEMC))
    6666      {
    67         log_printf(INFO,@COMPONENT,FUNCTION,"Method - transition");
     67        log_printf(INFO,@COMPONENT,FUNCTION,_("Method - transition"));
    6868
    6969        SC_METHOD (transition);
     
    7777#endif
    7878      }
    79     log_printf(FUNC,@COMPONENT,FUNCTION,"End");
     79    log_end(@COMPONENT,FUNCTION);
    8080  };
    8181   
     
    8484  @COMPONENT::~@COMPONENT (void)
    8585  {
    86     log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
     86    log_begin(@COMPONENT,FUNCTION);
    8787
    8888#ifdef STATISTICS
     
    9393#endif
    9494
    95     log_printf(INFO,@COMPONENT,FUNCTION,"Deallocation");
     95    log_printf(INFO,@COMPONENT,FUNCTION,_("Deallocation"));
    9696    deallocation ();
    9797
    98     log_printf(FUNC,@COMPONENT,FUNCTION,"End");
     98    log_end(@COMPONENT,FUNCTION);
    9999  };
    100100
Note: See TracChangeset for help on using the changeset viewer.