source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Entity_find_signal.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: 432 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Entity.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
13  Signal * Entity::find_signal (string name)
14  {
15    return _interfaces->find_signal(name);
16  };
17
18  bool Entity::find_signal (Signal * signal)
19  {
20    return _interfaces->find_signal(signal);
21  };
22
23}; // end namespace behavioural         
24}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.