Ignore:
Timestamp:
Feb 5, 2008, 5:21:20 PM (16 years ago)
Author:
rosiere
Message:
  • Add two component :
    • network between read unit and execute unit
    • network between execute unit and write unit
  • remove parameters "nb_operation" and "nb_type"
  • in write_queue add the special case : load_speculative
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station/SelfTest/src/main.cpp

    r76 r77  
    88#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station/SelfTest/include/test.h"
    99
    10 #define NB_PARAMS 18
     10#define NB_PARAMS 16
    1111
    1212void usage (int argc, char * argv[])
     
    2424       << " - nb_general_register (unsigned int)" << endl
    2525       << " - nb_special_register (unsigned int)" << endl
    26        << " - nb_operation        (unsigned int)" << endl
    27        << " - nb_type             (unsigned int)" << endl
    2826       << " - nb_gpr_write        (unsigned int)" << endl
    2927       << " - nb_spr_write        (unsigned int)" << endl
     
    6260  const uint32_t nb_general_register = atoi(argv[x++]);
    6361  const uint32_t nb_special_register = atoi(argv[x++]);
    64   const uint32_t nb_operation        = atoi(argv[x++]);
    65   const uint32_t nb_type             = atoi(argv[x++]);
    6662  const uint32_t nb_gpr_write        = atoi(argv[x++]);
    6763  const uint32_t nb_spr_write        = atoi(argv[x++]);
     
    8480         ,nb_general_register
    8581         ,nb_special_register
    86          ,nb_operation       
    87          ,nb_type           
    8882         ,nb_gpr_write
    8983         ,nb_spr_write
Note: See TracChangeset for help on using the changeset viewer.