Source-Changes-HG archive

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

[src/netbsd-9]: src/sys/arch/i386/stand/efiboot/bootia32 Pull up following re...



details:   https://anonhg.NetBSD.org/src/rev/c2ccad08fa9b
branches:  netbsd-9
changeset: 458410:c2ccad08fa9b
user:      martin <martin%NetBSD.org@localhost>
date:      Fri Sep 27 09:20:16 2019 +0000

description:
Pull up following revision(s) (requested by manu in ticket #251):

        sys/arch/i386/stand/efiboot/bootia32/multiboot32.S: revision 1.2

Fix multiboot32 argument usage

diffstat:

 sys/arch/i386/stand/efiboot/bootia32/multiboot32.S |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (26 lines):

diff -r f3b86afe1a56 -r c2ccad08fa9b sys/arch/i386/stand/efiboot/bootia32/multiboot32.S
--- a/sys/arch/i386/stand/efiboot/bootia32/multiboot32.S        Fri Sep 27 09:18:37 2019 +0000
+++ b/sys/arch/i386/stand/efiboot/bootia32/multiboot32.S        Fri Sep 27 09:20:16 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: multiboot32.S,v 1.1.2.2 2019/09/17 19:32:00 martin Exp $ */
+/*     $NetBSD: multiboot32.S,v 1.1.2.3 2019/09/27 09:20:16 martin Exp $ */
 
 #include <machine/asm.h>
 #include <machine/specialreg.h>
@@ -16,12 +16,12 @@
        .p2align 4,,15
 
 /*
- * multiboot32(entry 8(%esp), multiboot2_info 12(%esp), magic 16(%esp))
+ * multiboot32(entry 4(%esp), multiboot2_info 8(%esp), magic 12(%esp))
  */
 ENTRY(multiboot32_start)
 start:
-        movl    16(%esp),%eax
-        movl    12(%esp),%ebx
-        movl    8(%esp),%edx
+        movl    12(%esp),%eax
+        movl    8(%esp),%ebx
+        movl    4(%esp),%edx
         jmp    *%edx
 multiboot32_end:



Home | Main Index | Thread Index | Old Index