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/Read_queue/SelfTest/src/main.cpp

    r76 r77  
    88#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Read_queue/SelfTest/include/test.h"
    99
    10 #define NB_PARAMS 15
     10#define NB_PARAMS 13
    1111
    1212void usage (int argc, char * argv[])
     
    2323       << " - nb_general_register (unsigned int)" << endl
    2424       << " - nb_special_register (unsigned int)" << endl
    25        << " - nb_operation        (unsigned int)" << endl
    26        << " - nb_type             (unsigned int)" << endl
    2725       << " - nb_gpr_write        (unsigned int)" << endl
    2826       << " - nb_spr_write        (unsigned int)" << endl
     
    5856  const uint32_t nb_general_register = atoi(argv[x++]);
    5957  const uint32_t nb_special_register = atoi(argv[x++]);
    60   const uint32_t nb_operation        = atoi(argv[x++]);
    61   const uint32_t nb_type             = atoi(argv[x++]);
    6258  const uint32_t nb_gpr_write        = atoi(argv[x++]);
    6359  const uint32_t nb_spr_write        = atoi(argv[x++]);
     
    7773         ,nb_general_register
    7874         ,nb_special_register
    79          ,nb_operation       
    80          ,nb_type           
    8175         ,nb_gpr_write
    8276         ,nb_spr_write
Note: See TracChangeset for help on using the changeset viewer.