From 88432756ead526d9c321c20f10fafdbe40e5eaba Mon Sep 17 00:00:00 2001 From: Fabien Chouteau Date: Tue, 30 Apr 2013 17:07:04 +0200 Subject: prep: Fix NIP reset value MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The value was changed by commit 09d9828ace37ead29d510a7e24e63c2f15cd4b1c "PPC: fix hreset_vector for 60x, ...". Change it back for prep machine to unbreak OpenHack'Ware. Signed-off-by: Fabien Chouteau Signed-off-by: Andreas Färber --- hw/ppc/prep.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'hw') diff --git a/hw/ppc/prep.c b/hw/ppc/prep.c index 59c7da3..2ad5b41 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 */ -- cgit v1.1