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

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 472 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Parameters.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
13  Parameters::Parameters  (void) :
14    _size_condition        ( 3),
15    _size_instruction      (32) ,
16    _size_instruction_log2 (static_cast<uint32_t>(ceil(log2(_size_instruction))))
17  {
18  };
19
20  Parameters::~Parameters () 
21  {
22  };
23
24}; // end namespace behavioural         
25}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.