source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Simulation.h @ 88

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

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 986 bytes
Line 
1#ifdef SYSTEMC
2#ifndef morpheo_behavioural_Simulation_h
3#define morpheo_behavioural_Simulation_h
4
5/*
6 * $Id: Simulation.h 88 2008-12-10 18:31:39Z rosiere $
7 *
8 * [ Description ]
9 *
10 */
11
12#include "Common/include/Debug.h"
13
14#include <stdint.h>
15#include <systemc.h>
16#include <vector>
17
18namespace morpheo              {
19namespace behavioural          {
20
21extern double                _simulation_nb_cycle;
22// extern double                _simulation_nb_instruction;
23// extern std::vector<double> * _simulation_nb_instruction_commited;
24
25  // Warning, now no mutek to protect this variable
26
27//   class Simulation
28//   {
29//   private : const  uint32_t _num_context;
30
31//   public  :  Simulation (void);
32//   public  : ~Simulation (void);
33//   public  : void end_cycle (double nb_instruction_commited);
34//   };
35
36  bool simulation_test_end (void);
37  void simulation_init     (double nb_cycle,
38                            double nb_instruction);
39
40}; // end namespace behavioural         
41}; // end namespace morpheo             
42
43#endif
44#endif
Note: See TracBrowser for help on using the repository browser.