Ignore:
Timestamp:
Feb 2, 2008, 12:39:01 PM (16 years ago)
Author:
rosiere
Message:

Add new component : Read_unit (no tested)
Change functionnal_unit : now use type and operation to execute the good function
Change New_Component's script

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

    r66 r76  
    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 13
     10#define NB_PARAMS 15
    1111
    1212void usage (int argc, char * argv[])
     
    2727       << " - nb_gpr_write        (unsigned int)" << endl
    2828       << " - nb_spr_write        (unsigned int)" << endl
     29       << " - size_store_queue    (unsigned int)" << endl
     30       << " - size_load_queue     (unsigned int)" << endl
    2931       << "" << endl;
    3032
     
    6062  const uint32_t nb_gpr_write        = atoi(argv[x++]);
    6163  const uint32_t nb_spr_write        = atoi(argv[x++]);
     64  const uint32_t size_store_queue    = atoi(argv[x++]);
     65  const uint32_t size_load_queue     = atoi(argv[x++]);
    6266
    6367  try
     
    7781         ,nb_gpr_write
    7882         ,nb_spr_write
     83         ,size_store_queue
     84         ,size_load_queue
    7985          );
    8086     
Note: See TracChangeset for help on using the changeset viewer.