X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Farm_simulator.h;h=38ba4d46bcc23a1b67e3576bdfec697ba50bd46c;hb=67607fb64c92e069b693423642e5da6ca5a3be25;hp=971b492fe8986ec8c61eefc6cb03609fb9c60414;hpb=db7e77237c5a8104b527aeb23a2546b4bab92d8a;p=openocd.git diff --git a/src/target/arm_simulator.h b/src/target/arm_simulator.h index 971b492fe8..38ba4d46bc 100644 --- a/src/target/arm_simulator.h +++ b/src/target/arm_simulator.h @@ -17,15 +17,25 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ + #ifndef ARM_SIMULATOR_H #define ARM_SIMULATOR_H -#include "types.h" - -struct target_s; +struct target; -extern int arm_simulate_step(struct target_s *target, uint32_t *dry_run_pc); +struct arm_sim_interface { + void *user_data; + uint32_t (*get_reg)(struct arm_sim_interface *sim, int reg); + void (*set_reg)(struct arm_sim_interface *sim, int reg, uint32_t value); + uint32_t (*get_reg_mode)(struct arm_sim_interface *sim, int reg); + void (*set_reg_mode)(struct arm_sim_interface *sim, int reg, uint32_t value); + uint32_t (*get_cpsr)(struct arm_sim_interface *sim, int pos, int bits); + enum arm_state (*get_state)(struct arm_sim_interface *sim); + void (*set_state)(struct arm_sim_interface *sim, enum arm_state mode); + enum arm_mode (*get_mode)(struct arm_sim_interface *sim); +}; -#define ERROR_ARM_SIMULATOR_NOT_IMPLEMENTED (-700) +/* armv4_5 version */ +int arm_simulate_step(struct target *target, uint32_t *dry_run_pc); #endif /* ARM_SIMULATOR_H */