* sim-main.h (CIA_GET,CIA_SET): Provide dummy definitions for now.

This commit is contained in:
Doug Evans 1998-02-12 03:55:30 +00:00
parent b2f9c13cb7
commit 02e565a270
2 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,6 @@
Wed Feb 11 18:52:40 1998 Doug Evans <devans@seba.cygnus.com>
Wed Feb 11 19:53:48 1998 Doug Evans <devans@canuck.cygnus.com>
* sim-main.h (CIA_GET,CIA_SET): Provide dummy definitions for now.
* decode.c, decode.h, sem.c, sem-switch.c, model.c: Regenerate.
start-sanitize-m32rx

View File

@ -16,6 +16,8 @@ typedef struct _sim_cpu SIM_CPU;
/* These must be defined before sim-base.h. */
typedef SI sim_cia;
#define CIA_GET(cpu) 0 /* FIXME:(CPU_CGEN_HW (cpu)->h_pc) */
#define CIA_SET(cpu,val) 0 /* FIXME:(CPU_CGEN_HW (cpu)->h_pc = (val)) */
/* FIXME: Shouldn't be required to define these this early. */
#define SIM_ENGINE_HALT_HOOK(SD, LAST_CPU, CIA)
@ -61,8 +63,6 @@ struct _sim_cpu {
/* start-sanitize-m32rx */
#elif defined (WANT_CPU_M32RX)
M32RX_CPU_DATA cpu_data;
PARALLEL_EXEC par_exec;
#define CPU_PAR_EXEC(cpu) (& (cpu)->par_exec)
/* end-sanitize-m32rx */
#endif