source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/src/New_Component_allocation.cpp @ 15

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

Interface normalisé
Début du banc de registres multi niveaux

File size: 714 bytes
Line 
1#ifdef SYSTEMC
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/@DIRECTORY/include/@COMPONENT.h"
10
11namespace morpheo                    {
12namespace behavioural {
13@NAMESPACE_BEGIN
14
15  void @COMPONENT::allocation (void)
16  {
17    string rename;
18
19    log_printf(FUNC,@COMPONENT,"allocation","Begin");
20
21//#if defined(STATISTICS) or defined(VHDL_TESTBENCH)
22    in_CLOCK  = new SC_CLOCK           ("in_CLOCK");
23//#endif
24    in_NRESET = new SC_IN (Tcontrol_t) ("in_NRESET");
25
26    // ~~~~~[ Component ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   
27
28    log_printf(FUNC,@COMPONENT,"allocation","End");
29  };
30
31@NAMESPACE_END
32}; // end namespace behavioural
33}; // end namespace morpheo             
34#endif
Note: See TracBrowser for help on using the repository browser.