source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_set_signal.cpp @ 88

Last change on this file since 88 was 88, checked in by rosiere, 16 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 1.2 KB
RevLine 
[29]1/*
2 * $Id: Interface_set_signal.cpp 88 2008-12-10 18:31:39Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Interface.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
[88]13  Signal * Interface::set_signal (std::string     name     ,
[31]14                                  direction_t     direction,
15                                  uint32_t        size     ,
16                                  presence_port_t presence_port)
[29]17  {
[38]18    log_printf(FUNC,Behavioural,"set_signal","Begin");
[29]19
[75]20    std::string signame = signal_name(_name, name, direction);
[88]21   
[42]22    Signal * sig = new Signal       (signame, direction, size, presence_port);
[29]23
[38]24    _list_signal->push_back (sig);
25
26    log_printf(FUNC,Behavioural,"set_signal","End");
27
[31]28    return sig;
[29]29  };
30
[41]31#ifdef VHDL
32#  ifdef VHDL_TESTBENCH
[43]33
34#undef  FUNCTION
35#define FUNCTION "Interface::set_signal"
[41]36  void Interface::set_signal (Vhdl * & vhdl)
37  {
[43]38    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
[41]39    if (not _list_signal->empty())
40      {
[75]41        std::list<Signal*>::iterator i = _list_signal->begin();
[41]42       
43        while (i != _list_signal->end())
44          {
45            (*i)->set_signal (vhdl);
46            ++i;
47          }
48      }
[43]49    log_printf(FUNC,Behavioural,FUNCTION,"End");
[41]50  };
51#  endif
52#endif
53
[29]54}; // end namespace behavioural         
55}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.