source: trunk/IPs/systemC/Environment/Data/include/Data_Parameters.h @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 808 bytes
Line 
1#ifndef ENVIRONMENT_DATA_PARAMETERS_H
2#define ENVIRONMENT_DATA_PARAMETERS_H
3
4#include <iostream>
5#include "../../../shared/soclib_segment_table.h"
6
7namespace environment {
8namespace data {
9 
10  class Parameters
11  {
12  public : uint32_t               max_seg    ;
13  public : uint32_t               globalIndex;
14  public : uint32_t               localIndex ;
15  public : SOCLIB_SEGMENT_TABLE * segtab     ;
16
17  public : Parameters (uint32_t               max_seg    ,
18                       uint32_t               globalIndex,
19                       uint32_t               localIndex ,
20                       SOCLIB_SEGMENT_TABLE * segtab     )
21    {
22      this->max_seg     = max_seg    ;
23      this->globalIndex = globalIndex;
24      this->localIndex  = localIndex ;
25      this->segtab      = segtab     ;
26    }   
27  }; //end Parameters
28 
29};
30};
31#endif
Note: See TracBrowser for help on using the repository browser.