source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces_get_clock.cpp @ 42

Last change on this file since 42 was 42, checked in by rosiere, 17 years ago

Modification des classes d'encapsulation des interfaces :

  • gère les signaux à écrire dans le vhdl
  • les traces pour le testbench
  • la génération des vhdl structurelles

-> test sur la Pattern History Table

File size: 836 bytes
Line 
1#ifdef VHDL_TESTBENCH
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/include/Interfaces.h"
10
11
12namespace morpheo              {
13namespace behavioural          {
14 
15  Signal * Interfaces::get_clock (void)
16  {
17    Signal * clock = NULL;
18   
19    if (not _list_interface->empty())
20      {
21        list<Interface_fifo*>::iterator i = _list_interface->begin();
22       
23        while (i != _list_interface->end())
24          {
25            Signal * sig = (*i)->get_clock ();
26
27            if (sig != NULL)
28              {
29                if (clock != NULL)
30                  throw ErrorMorpheo ("<Interfaces.get_clock> : find too many clock.");
31                clock = sig;
32              }
33            ++i;
34          }
35      }
36
37    if (clock == NULL)
38      throw ErrorMorpheo ("<Interfaces.get_clock> : no clock find.");
39   
40    return clock;
41  };
42
43}; // end namespace behavioural         
44}; // end namespace morpheo             
45#endif
Note: See TracBrowser for help on using the repository browser.