mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
bsps/i386: Fix incorrect size specifier on instruction
This was causing an assembler warning.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user