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
RevLine 
[41]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 
[42]15  Signal * Interfaces::get_clock (void)
[41]16  {
[42]17    Signal * clock = NULL;
[41]18   
19    if (not _list_interface->empty())
20      {
[42]21        list<Interface_fifo*>::iterator i = _list_interface->begin();
[41]22       
23        while (i != _list_interface->end())
24          {
[42]25            Signal * sig = (*i)->get_clock ();
[41]26
[42]27            if (sig != NULL)
[41]28              {
[42]29                if (clock != NULL)
[41]30                  throw ErrorMorpheo ("<Interfaces.get_clock> : find too many clock.");
[42]31                clock = sig;
[41]32              }
33            ++i;
34          }
35      }
36
[42]37    if (clock == NULL)
[41]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.