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

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

Modif mineur : ajout d'info de débug

Release non stable

File size: 677 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#undef  FUNCTION
16#define FUNCTION "Interfaces::set_port"
17  void Interfaces::set_port (Vhdl * & vhdl)
18  {
19    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
20    if (not _list_interface->empty())
21      {
22        list<Interface_fifo*>::iterator i     = _list_interface->begin();
23       
24        while (i != _list_interface->end())
25          {
26            (*i)->set_port (vhdl);
27            ++i;
28          }
29      }
30    log_printf(FUNC,Behavioural,FUNCTION,"End");
31  };
32#endif
33
34}; // end namespace behavioural         
35}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.