source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Shifter/src/Shifter_vhdl.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: 648 bytes
Line 
1#ifdef VHDL
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/Shifter/include/Shifter.h"
10#include "Behavioural/include/Vhdl.h"
11
12namespace morpheo                    {
13namespace behavioural {
14namespace generic {
15namespace shifter {
16
17
18  void Shifter::vhdl (void)
19  {
20    Vhdl * vhdl = new Vhdl (_name);
21
22    vhdl->set_library_work (_name + "_Pack");
23
24    vhdl_port        (vhdl);
25    vhdl_declaration (vhdl);
26    vhdl_body        (vhdl);
27
28    vhdl->generate_file();
29
30    delete vhdl;
31  };
32
33}; // end namespace shifter
34}; // end namespace generic
35
36}; // end namespace behavioural
37}; // end namespace morpheo             
38#endif
Note: See TracBrowser for help on using the repository browser.