diff options
author | Hervé Poussineau <hpoussin@reactos.org> | 2014-04-23 23:19:35 +0200 |
---|---|---|
committer | Andreas Färber <andreas.faerber@web.de> | 2014-07-04 17:23:09 +0200 |
commit | c559da7c8eec5e45ef1f67978827af6f0b9546f5 (patch) | |
tree | 2a615117d7a324f7681e969eb7cf0c7e0527c121 /src/vectors.S | |
parent | 8a5d9dcfa14f82a0246958e0220a53a2618b53dd (diff) | |
download | qemu-openhackware-master.tar.gz |
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>
Diffstat (limited to 'src/vectors.S')
-rw-r--r-- | src/vectors.S | 4 |
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) ; |