source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Parameters.cpp @ 117

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

1) Platforms : add new organization for test
2) Load_Store_Unit : add array to count nb_check in store_queue
3) Issue_queue and Core_Glue : rewrite the issue network
4) Special_Register_Unit : add reset value to register CID
5) Softwares : add multicontext test
6) Softwares : add SPECINT
7) Softwares : add MiBench?
7) Read_queue : inhib access for r0
8) Change Core_Glue (network) - dont yet support priority and load balancing scheme

  • Property svn:keywords set to Id
File size: 892 bytes
RevLine 
[2]1/*
2 * $Id: Parameters.cpp 117 2009-05-16 14:42:39Z rosiere $
3 *
[117]4 * [ Description ]
[2]5 *
6 */
7
8#include "Behavioural/include/Parameters.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
[43]13#undef  FUNCTION
14#define FUNCTION "Parameters::Parameters"
[113]15  Parameters::Parameters  (void) :
16    _type ("")
[2]17  {
[43]18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
19    log_printf(FUNC,Behavioural,FUNCTION,"End");
[2]20  };
21
[43]22#undef  FUNCTION
[113]23#define FUNCTION "Parameters::Parameters"
24  Parameters::Parameters  (std::string type) :
25    _type (type)
26  {
27    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
28    log_printf(FUNC,Behavioural,FUNCTION,"End");
29  };
30
31#undef  FUNCTION
[43]32#define FUNCTION "Parameters::~Parameters" 
[2]33  Parameters::~Parameters () 
34  {
[43]35    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
36    log_printf(FUNC,Behavioural,FUNCTION,"End");
[2]37  };
38
39}; // end namespace behavioural         
40}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.