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

Location:
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Victim_Pseudo_LRU.h

    r42 r43  
    240240#if VHDL                                       
    241241  public  : void     vhdl                      (void);
    242   private : void     vhdl_port                 (Vhdl * & vhdl);
    243242  private : void     vhdl_declaration          (Vhdl * & vhdl);
    244243  private : void     vhdl_body                 (Vhdl * & vhdl);
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/src/Victim_Pseudo_LRU_vhdl.cpp

    r42 r43  
    2121    log_printf(FUNC,Victim_Pseudo_LRU,"vhdl","Begin");
    2222
    23     log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Construction of vhdl");
    2423    Vhdl * vhdl = new Vhdl (_name);
    2524
    26     log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set library");
    27     vhdl->set_library_work (_name + "_Pack");
     25    _interfaces->set_port     (vhdl);
     26    _component ->vhdl_instance(vhdl);
    2827
    29     log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set port");
    30     vhdl_port        (vhdl);
    31     log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set declaration");
    3228    vhdl_declaration (vhdl);
    33     log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set body");
    3429    vhdl_body        (vhdl);
    35     log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Generate File");
     30
    3631    vhdl->generate_file();
    3732
    3833    delete vhdl;
     34
    3935    log_printf(FUNC,Victim_Pseudo_LRU,"vhdl","End");
    4036  };
Note: See TracChangeset for help on using the changeset viewer.