Ignore:
Timestamp:
Apr 5, 2007, 4:17:30 PM (17 years ago)
Author:
rosiere
Message:

Interface normalisé
Début du banc de registres multi niveaux

Location:
trunk/IPs/systemC/processor/Morpheo/Behavioural/Stage_1_Ifetch/Predictor/Meta_Predictor/SelfTest
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Stage_1_Ifetch/Predictor/Meta_Predictor/SelfTest/configuration.cfg

    r5 r15  
    11Meta_Predictor
    2 0       0       +1      # have_meta_predictor               
     21       1       +1      # have_meta_predictor               
    331       1       +1      # predictor_0_have_bht             
    4410      10      +1      # predictor_0_bht_size_shifter     
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Stage_1_Ifetch/Predictor/Meta_Predictor/SelfTest/src/test.cpp

    r5 r15  
    2828   *********************************************************************/
    2929  sc_clock                         * CLOCK                      ;
     30  sc_signal<Tcontrol_t>            * NRESET                     ;
    3031
    3132    // Interface Predict
     
    4546  string rename;
    4647
    47   CLOCK                                  = new sc_clock ("clock", 1.0, 0.5);
    48  
     48  CLOCK                       = new sc_clock ("clock", 1.0, 0.5);
     49  NRESET                      = new sc_signal<Tcontrol_t> ("NRESET");
     50
    4951  PREDICT_VAL                 = new sc_signal<Tcontrol_t>     * [_param._nb_prediction     ];
    5052  PREDICT_ACK                 = new sc_signal<Tcontrol_t>     * [_param._nb_prediction     ];
     
    9395  cout << "<" << name << "> Instanciation of _Meta_Predictor" << endl;
    9496 
    95   (*(_Meta_Predictor->in_CLOCK))        (*(CLOCK));
     97  (*(_Meta_Predictor->in_CLOCK ))        (*(CLOCK ));
     98  (*(_Meta_Predictor->in_NRESET))        (*(NRESET));
    9699
    97100    for (uint32_t i=0; i<_param._nb_prediction; i++)
Note: See TracChangeset for help on using the changeset viewer.