summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHervé Poussineau <hpoussin@reactos.org>2014-04-23 23:19:35 +0200
committerAndreas Färber <andreas.faerber@web.de>2014-07-04 17:23:09 +0200
commitc559da7c8eec5e45ef1f67978827af6f0b9546f5 (patch)
tree2a615117d7a324f7681e969eb7cf0c7e0527c121
parent8a5d9dcfa14f82a0246958e0220a53a2618b53dd (diff)
downloadqemu-openhackware-c559da7c8eec5e45ef1f67978827af6f0b9546f5.tar.gz
Let the right reset entry point jump to the currently wrong entry pointHEADmaster
This is easier to do this than to copy the code from the wrong entry point (0xfffffffc) to the right entry point (0xfff00100). Suggested-by: Alexander Graf <agraf@suse.de> Signed-off-by: Hervé Poussineau <hpoussin@reactos.org> Acked-by: Alexander Graf <agraf@suse.de> Signed-off-by: Andreas Färber <andreas.faerber@web.de>
-rw-r--r--src/vectors.S4
1 files changed, 3 insertions, 1 deletions
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) ;