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_Execute_unit/Execute_unit/Functionnal_unit/SelfTest/src/main.cpp

    r76 r77  
    99#include "Behavioural/Custom/include/Custom_example.h"
    1010
    11 #define NB_PARAMS 10
     11#define NB_PARAMS 8
    1212
    1313void usage (int argc, char * argv[])
     
    2323  err (_("  * size_special_data   (uint32_t)\n"));
    2424  err (_("  * nb_special_register (uint32_t)\n"));
    25   err (_("  * nb_operation        (uint32_t)\n"));
    26   err (_("  * nb_type             (uint32_t)\n"));
    2725  exit (1);
    2826}
     
    4846  const uint32_t size_special_data   = atoi(argv[x++]);
    4947  const uint32_t nb_special_register = atoi(argv[x++]);
    50   const uint32_t nb_operation        = atoi(argv[x++]);
    51   const uint32_t nb_type             = atoi(argv[x++]);
    5248
    5349  execute_timing_t ** timing = new execute_timing_t * [MAX_TYPE];
     
    7268         size_special_data   ,
    7369         nb_special_register ,
    74          nb_operation        ,
    75          nb_type             ,
    7670         timing              ,
    7771         &(morpheo::behavioural::custom::example_get_custom_information)
Note: See TracChangeset for help on using the changeset viewer.