source: trunk/IPs/systemC/Environment/Sim2OS/include/Sim2OS_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: 384 bytes
Line 
1#ifndef ENVIRONMENT_SIM2OS_PARAMETERS_H
2#define ENVIRONMENT_SIM2OS_PARAMETERS_H
3
4#include "../../../shared/soclib_segment_table.h"
5
6namespace environment {
7namespace sim2os {
8
9  class Parameters
10  {
11  public : SOCLIB_SEGMENT_TABLE * segment_table;
12
13  public : Parameters (SOCLIB_SEGMENT_TABLE * segment_table)
14    {
15      this->segment_table = segment_table;
16    }
17  };
18
19};
20};
21#endif
Note: See TracBrowser for help on using the repository browser.