source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Read_queue/src/Read_queue_vhdl.cpp @ 54

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

Ajout de Read_queue

  • seulement en systemC
  • validé
File size: 1.0 KB
Line 
1#ifdef VHDL
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Read_queue/include/Read_queue.h"
10#include "Behavioural/include/Vhdl.h"
11
12namespace morpheo                    {
13namespace behavioural {
14namespace core {
15namespace multi_execute_loop {
16namespace execute_loop {
17namespace multi_read_unit {
18namespace read_unit {
19namespace read_queue {
20
21
22  void Read_queue::vhdl (void)
23  {
24    log_printf(FUNC,Read_queue,"vhdl","Begin");
25
26    Vhdl * vhdl = new Vhdl (_name);
27
28    _interfaces->set_port(vhdl);
29    _component->vhdl_instance(vhdl);
30
31    vhdl_declaration (vhdl);
32    vhdl_body        (vhdl);
33
34    vhdl->generate_file();
35
36    delete vhdl;
37
38    log_printf(FUNC,Read_queue,"vhdl","End");
39  };
40
41}; // end namespace read_queue
42}; // end namespace read_unit
43}; // end namespace multi_read_unit
44}; // end namespace execute_loop
45}; // end namespace multi_execute_loop
46}; // end namespace core
47
48}; // end namespace behavioural
49}; // end namespace morpheo             
50#endif
Note: See TracBrowser for help on using the repository browser.