123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef SIM_MAIN_H
- #define SIM_MAIN_H
- #include "sim-basics.h"
- typedef long int word;
- typedef unsigned long int uword;
- #include "sim-base.h"
- #include "bfd.h"
- #include "cr16_sim.h"
- struct _sim_cpu {
- sim_cpu_base base;
- };
- struct sim_state {
- sim_cpu *cpu[MAX_NR_PROCESSORS];
- sim_state_base base;
- };
- #endif
|