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