source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Function_pointer_add.cpp @ 145

Last change on this file since 145 was 145, checked in by rosiere, 14 years ago

1) add test with SPECINT2K
2) new config of Selftest
3) modif RAT to support multiple depth_save ... but not finish (need fix Update Prediction Table)
4) add Function_pointer but need fix

  • Property svn:keywords set to Id
File size: 415 bytes
Line 
1#if 0
2/*
3 * $Id: Function_pointer_add.cpp 145 2010-10-13 18:15:51Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/include/Function_pointer.h"
10
11namespace morpheo     {
12namespace behavioural {
13 
14  void Function_pointer::transition_add (f_t f)
15  {
16    _transition->push_back(f);
17  }
18 
19  void Function_pointer::genMoore_add (f_t f)
20  {
21    _genMoore->push_back(f);
22  }
23
24}; // end namespace behavioural         
25}; // end namespace morpheo             
26#endif
Note: See TracBrowser for help on using the repository browser.