source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Return_Address_Stack/include/Types.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: 872 bytes
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_return_address_stack_Types_h
2#define morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_return_address_stack_Types_h
3
4/*
5 * $Id: Types.h 81 2008-04-15 18:40:01Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Types.h"
12
13namespace morpheo {
14namespace behavioural {
15namespace core {
16namespace multi_front_end {
17namespace front_end {
18namespace prediction_unit {
19namespace return_address_stack {
20
21  class ras_entry_t
22  {
23  public : bool       _val    ;
24  public : bool       _predict;
25  public : bool       _miss   ;
26  public : Taddress_t _address;
27  };
28
29}; // end namespace return_address_stack
30}; // end namespace prediction_unit
31}; // end namespace front_end
32}; // end namespace multi_front_end
33}; // end namespace core
34}; // end namespace behavioural
35}; // end namespace morpheo             
36
37#endif
Note: See TracBrowser for help on using the repository browser.