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_Write_unit/Write_unit/Execute_queue/SelfTest/src/main.cpp

    r73 r77  
    88#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Execute_queue/SelfTest/include/test.h"
    99
    10 #define NB_PARAMS 9
     10#define NB_PARAMS 7
    1111
    1212void usage (int argc, char * argv[])
     
    2121  err (_(" * size_general_data   (uint32_t)\n"));
    2222  err (_(" * size_special_data   (uint32_t)\n"));
    23   err (_(" * nb_operation        (uint32_t)\n"));
    24   err (_(" * nb_type             (uint32_t)\n"));
    2523
    2624  exit (1);
     
    4644  const uint32_t size_general_data   = atoi(argv[x++]);
    4745  const uint32_t size_special_data   = atoi(argv[x++]);
    48   const uint32_t nb_operation        = atoi(argv[x++]);
    49   const uint32_t nb_type             = atoi(argv[x++]);
    5046
    5147  try
     
    5854         nb_packet          ,
    5955         size_general_data  ,
    60          size_special_data  ,
    61          nb_operation       ,
    62          nb_type            );
     56         size_special_data  );
    6357     
    6458      msg(_("%s"),param->print(1).c_str());
Note: See TracChangeset for help on using the changeset viewer.