source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_fifo_set_signal.cpp @ 41

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

Vhdl_Testbench : Modification du testbench. Maintenant complétement encapsuler dans la classe "Interfaces".
Suppression de la class Vhdl_Testbench dans un avenir proche :D
Suppression du répertoire Configuration.old

File size: 757 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Interface_fifo.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
13  Signal * Interface_fifo::set_signal_valack (string          name     ,
14                                              direction_t     direction,
15                                              val_ack_t       val_ack  ,
16                                              presence_port_t presence_port)
17  {
18    log_printf(FUNC,Behavioural,"set_signal_valack","Begin");
19
20    Signal * sig = Interface::set_signal (name         ,
21                                          direction    ,
22                                          1            ,
23                                          presence_port);
24
25    // save the ptr
26    save_ptr(sig, val_ack);
27
28    log_printf(FUNC,Behavioural,"set_signal_valack","End");
29
30    return sig;
31  };
32
33}; // end namespace behavioural         
34}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.