source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Counter/src/Counter_deallocation.cpp @ 42

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

Modification des classes d'encapsulation des interfaces :

  • gère les signaux à écrire dans le vhdl
  • les traces pour le testbench
  • la génération des vhdl structurelles

-> test sur la Pattern History Table

File size: 776 bytes
Line 
1#ifdef SYSTEMC
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/Counter/include/Counter.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace generic {
14namespace counter {
15
16
17  void Counter::deallocation (void)
18  {
19    log_printf(FUNC,Counter,"deallocation","Begin");
20
21    delete     in_CLOCK;
22    delete     in_NRESET;
23   
24    delete []  in_COUNTER_DATA  ;
25    delete []  in_COUNTER_ADDSUB;
26    delete [] out_COUNTER_DATA  ;
27   
28    // ~~~~~[ Component ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   
29
30    delete _component;
31
32    log_printf(FUNC,Counter,"deallocation","End");
33  };
34
35}; // end namespace counter
36}; // end namespace generic
37
38}; // end namespace behavioural
39}; // end namespace morpheo             
40#endif
Note: See TracBrowser for help on using the repository browser.