source: trunk/IPs/systemC/Environnement/RamLock/include/Parameters.h @ 78

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

Add :

  • Execute_loop (must be test systemC)
  • Prediction
    • Direction : predifined scheme
    • Branch Target Buffer
  • iFetch_unit
    • ifetch_queue
    • pc management
  • Decod_unit
    • coming soon : support for custom operation
  • Rename_unit
    • RAT
    • Free_list
    • Dependence RAW check
    • Load store unit pointer
  • New Environnement (hierarchy_memory will remove in a next version)


Modif :

  • Manage Custom Operation
  • All component in execute_loop to use the new statistics management

Not Finish :

  • Return Address Stack
  • Environnement
File size: 323 bytes
Line 
1#ifndef Environnement_Parameters_H
2#define Environnement_Parameters_H
3
4#include <stdint.h>
5
6namespace environnement {
7namespace ramlock {
8
9  class Parameters
10  {
11  public  : uint32_t _size;
12
13  public  :  Parameters (uint32_t size)
14    {
15      _size = size;
16    }
17
18  public  : ~Parameters (void)
19    {};
20
21  };
22
23};
24};
25#endif
Note: See TracBrowser for help on using the repository browser.