Ignore:
Timestamp:
Dec 12, 2007, 5:02:47 PM (17 years ago)
Author:
rosiere
Message:

Station de reservation : systemC et VHDL ok

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/src/Parameters_msg_error.cpp

    r55 r69  
    77
    88#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station/include/Parameters.h"
    9 #include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station/include/Types.h"
    109#include <sstream>
    1110using namespace std;
     
    2928    string msg = "";
    3029
    31     if (_size_queue < 2)
     30//     if (_size_queue < 2)
     31//       {
     32//         msg += "  - The reservation_station must be have less a depth of 2";
     33//         msg += "    * size_queue                      : " + toString(_size_queue)    + "\n";
     34//       }
     35
     36    if (_size_queue < _nb_inst_retire)
    3237      {
    33         msg += "  - The reservation_station must be have less a depth of 2";
    34         msg += "    * size_queue                      : " + toString(_size_queue)    + "\n";
     38        msg += "  - The reservation_station can't have more retire port than entry in the queue.";
    3539      }
    36 
     40   
    3741    return msg;
    3842
Note: See TracChangeset for help on using the changeset viewer.