mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-27 13:30:52 +00:00
mips_jazz: Pass MIPSCPU to main_cpu_reset()
Allows us to use cpu_reset() in place of cpu_state_reset(). Signed-off-by: Andreas Färber <afaerber@suse.de> Acked-by: Hervé Poussineau <hpoussin@reactos.org>
This commit is contained in:
parent
6bd8da655a
commit
f37f435a3e
@ -50,8 +50,9 @@ enum jazz_model_e
|
||||
|
||||
static void main_cpu_reset(void *opaque)
|
||||
{
|
||||
CPUMIPSState *env = opaque;
|
||||
cpu_state_reset(env);
|
||||
MIPSCPU *cpu = opaque;
|
||||
|
||||
cpu_reset(CPU(cpu));
|
||||
}
|
||||
|
||||
static uint64_t rtc_read(void *opaque, target_phys_addr_t addr, unsigned size)
|
||||
@ -147,7 +148,7 @@ static void mips_jazz_init(MemoryRegion *address_space,
|
||||
exit(1);
|
||||
}
|
||||
env = &cpu->env;
|
||||
qemu_register_reset(main_cpu_reset, env);
|
||||
qemu_register_reset(main_cpu_reset, cpu);
|
||||
|
||||
/* allocate RAM */
|
||||
memory_region_init_ram(ram, "mips_jazz.ram", ram_size);
|
||||
|
Loading…
Reference in New Issue
Block a user