blob: eefe72cf52f4c896828dba83170ef209e9bb0239 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef SIM_MAIN_H
#define SIM_MAIN_H
#include "sim-basics.h"
#include "sim-base.h"
/**
* TODO: Move these includes to the igen files that need them.
* This requires extending the igen syntax to support header includes.
*/
#if defined(SEMANTICS_C) || defined(SUPPORT_C)
#include "sim-signal.h"
#endif
#if defined(ENGINE_C) || defined(IDECODE_C) || defined(SEMANTICS_C)
#include "v850-sim.h"
#endif
#endif
|