qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v2 2/2] ohw: let the right reset entry point 0xfff00


From: Hervé Poussineau
Subject: [Qemu-devel] [PATCH v2 2/2] ohw: let the right reset entry point 0xfff00100 jump to the currently wrong entry point (0xfffffffc)
Date: Wed, 23 Apr 2014 23:19:35 +0200

This is easier to do this than to copy the code from the wrong entry point to 
the right entry point.

Suggested-by: Alexander Graf <address@hidden>
Signed-off-by: Hervé Poussineau <address@hidden>
---
 src/vectors.S |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/vectors.S b/src/vectors.S
index 691d568..1c1bfee 100644
--- a/src/vectors.S
+++ b/src/vectors.S
@@ -121,7 +121,9 @@ excp_##entry##:                                           ; 
\
 
         /* Exception vectors */
         /* Reset exception */
-        EXCP_BUG(0100)                                    ;
+.org 0x0100
+excp_0100:
+        ba 0xfffffffc
 
         /* Machine check exception */
         EXCP_BUG(0200)                                    ;
-- 
1.7.10.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]