source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/src/New_Component_vhdl_port.cpp @ 2

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 528 bytes
Line 
1#ifdef VHDL
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::vhdl_port (Vhdl & vhdl)
16  {
17    log_printf(FUNC,@COMPONENT,"vhdl_port","Begin");
18
19    vhdl.set_port (" in_CLOCK" , IN, 1);
20    vhdl.set_port (" in_NRESET", IN, 1);
21
22    log_printf(FUNC,@COMPONENT,"vhdl_port","End");
23  };
24
25@NAMESPACE_END
26}; // end namespace behavioural
27}; // end namespace morpheo             
28#endif
Note: See TracBrowser for help on using the repository browser.