source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_queue/src/Parameters_msg_error.cpp @ 88

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 994 bytes
Line 
1/*
2 * $Id: Parameters_msg_error.cpp 88 2008-12-10 18:31:39Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Types.h"
9#include "Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_queue/include/Parameters.h"
10#include <sstream>
11
12namespace morpheo                    {
13namespace behavioural {
14namespace core {
15namespace multi_front_end {
16namespace front_end {
17namespace ifetch_unit {
18namespace ifetch_queue {
19
20
21#undef  FUNCTION
22#define FUNCTION "Ifetch_queue::msg_error"
23  Parameters_test Parameters::msg_error(void)
24  {
25    log_printf(FUNC,Ifetch_queue,FUNCTION,"Begin");
26
27    Parameters_test test ("Ifetch_queue");
28
29    if (_size_queue == 1)
30      test.warning("To best perfomance, size_queue must be > 1.\n");
31   
32    log_printf(FUNC,Ifetch_queue,FUNCTION,"End");
33
34    return test;
35  };
36
37}; // end namespace ifetch_queue
38}; // end namespace ifetch_unit
39}; // end namespace front_end
40}; // end namespace multi_front_end
41}; // end namespace core
42
43}; // end namespace behavioural
44}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.