source: trunk/IPs/systemC/processor/Morpheo/Common/include/Message.h @ 71

Last change on this file since 71 was 71, checked in by rosiere, 16 years ago

Modification of Statisctics
Add a new systemC component : Load_Store_Queue (tested with one benchmark and one configuration). Store don't supported the Data Buss Error (Load is supported)

File size: 397 bytes
Line 
1#ifndef MESSAGE_H
2#define MESSAGE_H
3/*
4 * $Id$
5 *
6 * [ Description ]
7 *
8 * Routine of Test
9 */
10
11#include <stdio.h>
12#include <string.h>
13#include <libintl.h>
14
15namespace morpheo {
16
17#ifdef NO_TRANSLATION
18# define _(String) (String)
19#else
20# define _(String) gettext (String)
21#endif
22
23#define msg(arg...) fprintf(stdout,arg);
24#define err(arg...) fprintf(stderr,arg);
25
26}; // end namespace morpheo
27#endif
Note: See TracBrowser for help on using the repository browser.