source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces_set_port.cpp @ 40

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

Interface et Signal, c'est deux classes enregistres la valeurs des signaux à chaque cycle ... étape préparatoire avan le changement de la classe Vhdl_Testbench

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