Skip to content

Commit

Permalink
target-m68k: Implement CPUClass::set_pc()
Browse files Browse the repository at this point in the history
This adds support for GDB's c addr (Continue) and s addr (Single Step).

Prepares for dropping cpu_pc_from_tb().

Signed-off-by: Andreas Färber <afaerber@suse.de>
  • Loading branch information
afaerber committed Jul 23, 2013
1 parent f45748f commit e700604
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions target-m68k/cpu.c
Expand Up @@ -23,6 +23,13 @@
#include "migration/vmstate.h"


static void m68k_cpu_set_pc(CPUState *cs, vaddr value)
{
M68kCPU *cpu = M68K_CPU(cs);

cpu->env.pc = value;
}

static void m68k_set_feature(CPUM68KState *env, int feature)
{
env->features |= (1u << feature);
Expand Down Expand Up @@ -182,6 +189,7 @@ static void m68k_cpu_class_init(ObjectClass *c, void *data)
cc->class_by_name = m68k_cpu_class_by_name;
cc->do_interrupt = m68k_cpu_do_interrupt;
cc->dump_state = m68k_cpu_dump_state;
cc->set_pc = m68k_cpu_set_pc;
dc->vmsd = &vmstate_m68k_cpu;
}

Expand Down

0 comments on commit e700604

Please sign in to comment.