Changeset 119204d8 in rtems


Ignore:
Timestamp:
01/10/00 20:40:41 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
6d3ab0f
Parents:
c084f11
Message:

Removed warning by changing %eax -> %ax as source of move to segment
registers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/i386/pc386/start/start16.S

    rc084f11 r119204d8  
    9999        +---------------------------------------------------------------------*/
    100100        movl    $PROT_DATA_SEG, %eax
    101         movl    %ax, %ds
    102         movl    %ax, %es
    103         movl    %ax, %ss
     101        movw    %ax, %ds
     102        movw    %ax, %es
     103        movw    %ax, %ss
    104104        movl    $start16 + STACKOFF, %esp       # set up stack pointer
    105105        addl    $start16 + STACKOFF, %ebp       # set up stack pointer
Note: See TracChangeset for help on using the changeset viewer.