sim: m68hc11/mips/mn10300/v850: add basic sim_pc_get

The previous profile change broke these sims that use sim-profile but
not sim-cpu (due to missing model support).  Add simple funcs until we
can convert these over properly.
This commit is contained in:
Mike Frysinger
2015-03-24 02:41:51 -04:00
parent 282c975030
commit 05f53ed611
8 changed files with 38 additions and 0 deletions

View File

@ -1093,6 +1093,11 @@ sim_fetch_register (sd,rn,memory,length)
return 0;
}
sim_cia
sim_pc_get (sim_cpu *cpu)
{
return PC;
}
SIM_RC
sim_create_inferior (sd, abfd, argv,env)