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

    r69 r76  
    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 16
     10#define NB_PARAMS 18
    1111
    1212void usage (int argc, char * argv[])
     
    3030       << " - nb_bypass_write     (unsigned int)" << endl
    3131       << " - nb_bypass_memory    (unsigned int)" << endl
     32       << " - size_store_queue    (unsigned int)" << endl
     33       << " - size_load_queue     (unsigned int)" << endl
    3234       << "" << endl;
    3335
     
    6668  const uint32_t nb_bypass_write     = atoi(argv[x++]);
    6769  const uint32_t nb_bypass_memory    = atoi(argv[x++]);
     70  const uint32_t size_store_queue    = atoi(argv[x++]);
     71  const uint32_t size_load_queue     = atoi(argv[x++]);
    6872 
    6973  try
     
    8690         ,nb_bypass_write
    8791         ,nb_bypass_memory
     92         ,size_store_queue
     93         ,size_load_queue
    8894         );
    8995     
Note: See TracChangeset for help on using the changeset viewer.