[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-ppc] [Qemu-devel] [PATCH] Fix PReP NIP reset value
From: |
Andreas Färber |
Subject: |
Re: [Qemu-ppc] [Qemu-devel] [PATCH] Fix PReP NIP reset value |
Date: |
Wed, 01 May 2013 13:16:15 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 |
Am 30.04.2013 17:07, schrieb Fabien Chouteau:
> The value was changed by the "PPC: fix hreset_vector..." patch.
>
> Signed-off-by: Fabien Chouteau <address@hidden>
> ---
> hw/ppc/prep.c | 3 +++
> 1 file changed, 3 insertions(+)
Thanks, applied to prep-up (with enhanced commit message):
http://repo.or.cz/w/qemu/afaerber.git/shortlog/refs/heads/prep-up
Andreas
>
> diff --git a/hw/ppc/prep.c b/hw/ppc/prep.c
> index cceab3e..2d0c4fe 100644
> --- a/hw/ppc/prep.c
> +++ b/hw/ppc/prep.c
> @@ -427,6 +427,9 @@ static void ppc_prep_reset(void *opaque)
> PowerPCCPU *cpu = opaque;
>
> cpu_reset(CPU(cpu));
> +
> + /* Reset address */
> + cpu->env.nip = 0xfffffffc;
> }
>
> /* PowerPC PREP hardware initialisation */
>
- Re: [Qemu-ppc] [Qemu-devel] [PATCH] Fix PReP NIP reset value,
Andreas Färber <=