1999-04-16 01:35:26 +00:00
|
|
|
#ifndef SIM_MAIN_H
|
|
|
|
#define SIM_MAIN_H
|
|
|
|
|
|
|
|
#include "sim-basics.h"
|
|
|
|
#include "sim-base.h"
|
|
|
|
|
2022-12-22 22:57:57 -05:00
|
|
|
/**
|
|
|
|
* TODO: Move these includes to the igen files that need them.
|
|
|
|
* This requires extending the igen syntax to support header includes.
|
|
|
|
*/
|
2023-01-18 19:11:38 -05:00
|
|
|
#if defined(SEMANTICS_C) || defined(SUPPORT_C)
|
2022-12-22 22:57:57 -05:00
|
|
|
#include "sim-signal.h"
|
2023-01-18 19:11:38 -05:00
|
|
|
#endif
|
|
|
|
#if defined(ENGINE_C) || defined(IDECODE_C) || defined(SEMANTICS_C)
|
2022-12-22 22:57:57 -05:00
|
|
|
#include "v850-sim.h"
|
2023-01-18 19:11:38 -05:00
|
|
|
#endif
|
2015-02-27 09:49:20 +00:00
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
#endif
|