Ignore:
Timestamp:
Apr 15, 2008, 8:40:01 PM (16 years ago)
Author:
rosiere
Message:
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
File:
1 edited

Legend:

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

    • Property svn:keywords set to Id
    r78 r81  
    3333    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
    3434
     35    usage_environment(_usage);
     36
    3537    log_printf(INFO,@COMPONENT,FUNCTION,"Allocation");
    3638
     
    4244
    4345#ifdef STATISTICS
    44     if (_usage & USE_STATISTICS)
     46    if (usage_is_set(_usage,USE_STATISTICS))
    4547      {
    4648        log_printf(INFO,@COMPONENT,FUNCTION,"Allocation of statistics");
     
    5153
    5254#ifdef VHDL
    53     if (_usage & USE_VHDL)
     55    if (usage_is_set(_usage,USE_VHDL))
    5456      {
    5557        // generate the vhdl
     
    6163
    6264#ifdef SYSTEMC
    63     if (_usage & USE_SYSTEMC)
     65    if (usage_is_set(_usage,USE_SYSTEMC))
    6466      {
    6567        log_printf(INFO,@COMPONENT,FUNCTION,"Method - transition");
     
    8587
    8688#ifdef STATISTICS
    87     if (_usage & USE_STATISTICS)
     89    if (usage_is_set(_usage,USE_STATISTICS))
    8890      {
    8991        statistics_deallocation();
Note: See TracChangeset for help on using the changeset viewer.