source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Entity_test_map.cpp @ 62

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

Modification en profondeur de Component-port_map.
Compilation ok pour Register_unit ... a tester (systemC et vhdl)

File size: 616 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Entity.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
14#undef  FUNCTION
15#define FUNCTION "Entity::test_map"
16  bool Entity::test_map (bool top_level)
17  {
18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
19 
20    log_printf(NONE,Behavioural,FUNCTION, " * Test mapping : Entity \"%s\"",_name.c_str());
21 
22    bool _return = _interfaces->test_map(top_level);
23
24    log_printf(FUNC,Behavioural,FUNCTION,"End");
25   
26    return _return;
27  };
28
29}; // end namespace behavioural         
30}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.