bsps/i386: Fix incorrect size specifier on instruction

This was causing an assembler warning.
This commit is contained in:
Jeremy Lorelli
2025-06-25 18:54:02 -07:00
parent c26259ee2e
commit 2483cf035b

View File

@@ -110,12 +110,12 @@ speakl: jmp speakl # and SPIN!!!
movl eax, ebx movl eax, ebx
movl $SYM(_boot_multiboot_info), edi movl $SYM(_boot_multiboot_info), edi
/* save flags, always present */ /* save flags, always present */
movsd movsl
/* flag 1 is memory */ /* flag 1 is memory */
and $1, eax and $1, eax
je 1f je 1f
movl $2, ecx movl $2, ecx
rep movsd rep movsl
/* flag 2 is the command line */ /* flag 2 is the command line */
1: movl ebx, eax 1: movl ebx, eax
and $4, eax and $4, eax