Ignore:
Timestamp:
Dec 10, 2008, 7:31:39 PM (16 years ago)
Author:
rosiere
Message:

Almost complete design
with Test and test platform

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Execute_unit/Execute_unit/Load_store_unit/src/Parameters_msg_error.cpp

    r81 r88  
    3232        {
    3333          if (not (_nb_bypass_memory == 0))
    34             test.error("Bypass memory is not supported. Please wait a next revision.");
     34            test.error(_("Bypass memory is not supported. Please wait a next revision.\n"));
    3535 
    3636          break;
     
    4242        {
    4343          if (not (_nb_bypass_memory == 0))
    44             test.error("In the load scheme '"+toString(_speculative_load)+"', they have none bypass.");
     44            test.error(toString(_("In the load scheme '%s', they have none bypass.\n"),toString(_speculative_load).c_str()));
    4545
    46           test.error("Speculative load scheme '"+toString(_speculative_load)+"' is not supported. Please wait a next revision.");
     46          test.error(toString(_("Speculative load scheme '%s' is not supported. Please wait a next revision.\n"),toString(_speculative_load).c_str()));
    4747          break;
    4848        }
     
    5050
    5151    if (not (_size_store_queue >= 2))
    52       test.error("Store queue must have at less two slot.");
     52      test.error(_("Store queue must have at less two slot.\n"));
    5353
    5454    if (not (_nb_bypass_memory <= _size_load_queue))
    55       test.error("Bypass number must be less than load_queue's size.");
     55      test.error(_("Bypass number must be less than load_queue's size.\n"));
     56
     57    if (_nb_cache_port > 1)
     58      test.warning(_("nb_cache_port > 1 is unsupported (Coming Soon).\n"));
     59
     60    if (_nb_inst_memory > 1)
     61      test.warning(_("nb_inst_memory > 1 is unsupported (Coming Soon).\n"));
    5662
    5763    log_printf(FUNC,Load_store_unit,FUNCTION,"End");
Note: See TracChangeset for help on using the changeset viewer.