source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/SPR.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: 450 bytes
Line 
1#ifndef morpheo_behavioural_SPR_h
2#define morpheo_behavioural_SPR_h
3
4#include "Behavioural/include/SPR_access_mode.h"
5
6namespace morpheo {
7namespace behavioural {
8
9  class SPR
10  {
11  public : virtual       ~SPR   (void  ) {};
12  public : virtual void   reset (void  ) = 0;
13  public : virtual Tspr_t read  (void  ) = 0;
14  public : virtual void   write (Tspr_t) = 0;
15  };
16
17}  // end namespace behavioural
18}  // end namespace morpheo             
19#endif
Note: See TracBrowser for help on using the repository browser.