X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=sim%2Fcr16%2Fsim-main.h;h=a71bc793dfd1c5291d7b985bdbd98d38b7687cdb;hb=ebe84f23d2f3c0cb145cc7b3acfb011a4c7df1c9;hp=2be0e2390da59b4226c882d3db61ee5d3695e34b;hpb=247ac9ee6e1ecea67d29a5712e77e8c64834b06e;p=deliverable%2Fbinutils-gdb.git diff --git a/sim/cr16/sim-main.h b/sim/cr16/sim-main.h index 2be0e2390d..a71bc793df 100644 --- a/sim/cr16/sim-main.h +++ b/sim/cr16/sim-main.h @@ -1,5 +1,5 @@ /* Simulation code for the CR16 processor. - Copyright (C) 2009-2015 Free Software Foundation, Inc. + Copyright (C) 2009-2020 Free Software Foundation, Inc. This file is part of simulators. @@ -21,20 +21,14 @@ #include "sim-basics.h" -typedef address_word sim_cia; typedef long int word; typedef unsigned long int uword; -typedef struct _sim_cpu SIM_CPU; - #include "sim-base.h" #include "bfd.h" #include "cr16_sim.h" -#define CIA_GET(cpu) PC -#define CIA_SET(cpu,val) SET_PC (val) - struct _sim_cpu { sim_cpu_base base; @@ -43,11 +37,6 @@ struct _sim_cpu { struct sim_state { sim_cpu *cpu[MAX_NR_PROCESSORS]; -#if (WITH_SMP) -#define STATE_CPU(sd,n) ((sd)->cpu[n]) -#else -#define STATE_CPU(sd,n) ((sd)->cpu[0]) -#endif sim_state_base base; };