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
Files:
7 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Counter/src/Counter_vhdl.cpp

    r42 r43  
    1919  {
    2020    log_printf(FUNC,Counter,"vhdl","Begin");
     21
    2122    Vhdl * vhdl = new Vhdl (_name);
    2223
    23     vhdl->set_library_work (_name + "_Pack");
     24    _interfaces->set_port     (vhdl);
     25    _component ->vhdl_instance(vhdl);
    2426
    25     vhdl_port        (vhdl);
    2627    vhdl_declaration (vhdl);
    2728    vhdl_body        (vhdl);
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/RegisterFile_Monolithic.h

    r42 r43  
    114114#if VHDL                                       
    115115  private : void     vhdl                      (void);
    116   private : void     vhdl_port                 (Vhdl * & vhdl);
    117   private : void     vhdl_type                 (Vhdl * & vhdl);
    118   private : void     vhdl_signal               (Vhdl * & vhdl);
     116  private : void     vhdl_declaration          (Vhdl * & vhdl);
    119117  private : void     vhdl_body                 (Vhdl * & vhdl);
    120118#endif                                         
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/src/RegisterFile_Monolithic_vhdl.cpp

    r41 r43  
    2020    Vhdl * vhdl = new Vhdl (_name);
    2121
    22     vhdl->set_library_work (_name + "_Pack");
     22    _interfaces->set_port     (vhdl);
     23    _component ->vhdl_instance(vhdl);
    2324
    24     vhdl_port   (vhdl);
    25     vhdl_type   (vhdl);
    26     vhdl_signal (vhdl);
    27     vhdl_body   (vhdl);
     25    vhdl_declaration (vhdl);
     26    vhdl_body        (vhdl);
    2827
    2928    vhdl->generate_file();
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Select_Priority_Fixed/include/Select_Priority_Fixed.h

    r42 r43  
    110110#if VHDL                                       
    111111  public  : void     vhdl                      (void);
    112   private : void     vhdl_port                 (Vhdl * & vhdl);
    113112  private : void     vhdl_declaration          (Vhdl * & vhdl);
    114113  private : void     vhdl_body                 (Vhdl * & vhdl);
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Select_Priority_Fixed/src/Select_Priority_Fixed_vhdl.cpp

    r40 r43  
    2323    Vhdl * vhdl = new Vhdl (_name);
    2424
    25     vhdl->set_library_work (_name + "_Pack");
     25    _interfaces->set_port     (vhdl);
     26    _component ->vhdl_instance(vhdl);
    2627
    27     vhdl_port        (vhdl);
    2828    vhdl_declaration (vhdl);
    2929    vhdl_body        (vhdl);
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Shifter/include/Shifter.h

    r42 r43  
    103103#if VHDL                                       
    104104  public  : void     vhdl                      (void);
    105   private : void     vhdl_port                 (Vhdl * & vhdl);
    106105  private : void     vhdl_declaration          (Vhdl * & vhdl);
    107106  private : void     vhdl_body                 (Vhdl * & vhdl);
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Shifter/src/Shifter_vhdl.cpp

    r42 r43  
    2020    Vhdl * vhdl = new Vhdl (_name);
    2121
    22     vhdl->set_library_work (_name + "_Pack");
     22    _interfaces->set_port     (vhdl);
     23    _component ->vhdl_instance(vhdl);
    2324
    24     vhdl_port        (vhdl);
    2525    vhdl_declaration (vhdl);
    2626    vhdl_body        (vhdl);
  • 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.