sim: clean up duplicate sim-engine hooks

Now that we've unified sim-cpu, we can delete the duplicate sim-engine
hooks -- these targets defined these only because they didn't fully
implement the sim-cpu callbacks.
This commit is contained in:
Mike Frysinger
2015-04-18 04:38:33 -04:00
parent e8d3a34fee
commit 3ebe2863f7
8 changed files with 17 additions and 37 deletions

View File

@ -29,17 +29,6 @@
#include "lm32-desc.h"
#include "lm32-opc.h"
#include "arch.h"
#define SIM_ENGINE_HALT_HOOK(sd, cpu, cia) \
do { \
if (cpu) /* null if ctrl-c */ \
sim_pc_set ((cpu), (cia)); \
} while (0)
#define SIM_ENGINE_RESTART_HOOK(sd, cpu, cia) \
do { \
sim_pc_set ((cpu), (cia)); \
} while (0)
#include "sim-base.h"
#include "cgen-sim.h"
#include "lm32-sim.h"